home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2012 January / maximum-cd-2012-01.iso / DiscContents / digsby_setup.exe / lib / bootstrap.pyo (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2011-10-05  |  865 b   |  25 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.6)
  3.  
  4.  
  5. def install_sentinel():
  6.     import __builtin__
  7.     
  8.     class Sentinel:
  9.         
  10.         def __init__(self, *a, **k):
  11.             pass
  12.  
  13.         
  14.         def __repr__(self):
  15.             return '<Sentinel %s>' % id(self)
  16.  
  17.         
  18.         def __nonzero__(self):
  19.             return False
  20.  
  21.  
  22.     __builtin__.Sentinel = Sentinel
  23.     __builtin__.sentinel = Sentinel()
  24.  
  25.