home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyo (Python 2.6)
-
-
- def install_sentinel():
- import __builtin__
-
- class Sentinel:
-
- def __init__(self, *a, **k):
- pass
-
-
- def __repr__(self):
- return '<Sentinel %s>' % id(self)
-
-
- def __nonzero__(self):
- return False
-
-
- __builtin__.Sentinel = Sentinel
- __builtin__.sentinel = Sentinel()
-
-