diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2008-08-18 03:41:46 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2008-08-18 03:41:46 (GMT) |
commit | 7d10c2baf99f9dc4318fe985b0709816ef192d61 (patch) | |
tree | 6c83fbdbc1c894fa693bd11861639dd44b0bf9c7 /Lib/weakref.py | |
parent | 22ba5609be1de3f5bb78579eae0cdf9e7f2a3563 (diff) | |
download | cpython-7d10c2baf99f9dc4318fe985b0709816ef192d61.zip cpython-7d10c2baf99f9dc4318fe985b0709816ef192d61.tar.gz cpython-7d10c2baf99f9dc4318fe985b0709816ef192d61.tar.bz2 |
ReferenceError is undefined. causes test___all__.py to fail. remove it from __all__
Diffstat (limited to 'Lib/weakref.py')
-rw-r--r-- | Lib/weakref.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/weakref.py b/Lib/weakref.py index 3301070..64d962c 100644 --- a/Lib/weakref.py +++ b/Lib/weakref.py @@ -25,7 +25,7 @@ from _weakrefset import WeakSet ProxyTypes = (ProxyType, CallableProxyType) __all__ = ["ref", "proxy", "getweakrefcount", "getweakrefs", - "WeakKeyDictionary", "ReferenceError", "ReferenceType", "ProxyType", + "WeakKeyDictionary", "ReferenceType", "ProxyType", "CallableProxyType", "ProxyTypes", "WeakValueDictionary", "WeakSet"] |