# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT """ Weak-reference support module. """ class CallableProxyType(object): def next(self): """ x.next() -> the next value, or raise StopIteration """ return None class ProxyType(object): def next(self): """ x.next() -> the next value, or raise StopIteration """ return None class ReferenceType(object): def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass __doc__ = 'Weak-reference support module.' __file__ = '/Users/Shared/src/ide/build-files/build-temp/runtimes-release/__os__/osx/runtime-python2.6/lib/Python.framework/Versions/Current/lib/python2.6/lib-dynload/_weakref.so' __name__ = '_weakref' __package__ = None def getweakrefcount(object): """ getweakrefcount(object) -- return the number of weak references to 'object'. """ return None def getweakrefs(object): """ getweakrefs(object) -- return a list of all weak reference objects that point to 'object'. """ return [] def proxy(object, callback=None): """ proxy(object[, callback]) -- create a proxy object that weakly references 'object'. 'callback', if given, is called with a reference to the proxy when 'object' is about to be finalized. """ return None