diff options
Diffstat (limited to 'Lib/weakref.py')
-rw-r--r-- | Lib/weakref.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/weakref.py b/Lib/weakref.py index 30574ef..a5a2d1d 100644 --- a/Lib/weakref.py +++ b/Lib/weakref.py @@ -19,6 +19,9 @@ from _weakref import \ ProxyTypes = (ProxyType, CallableProxyType) +__all__ = ["ref", "mapping", "proxy", "getweakrefcount", "getweakrefs", + "WeakKeyDictionary", "ReferenceType", "ProxyType", + "CallableProxyType", "ProxyTypes", "WeakValueDictionary"] def mapping(dict=None,weakkeys=0): if weakkeys: |