[Python-3000-checkins] r65805 - python/branches/py3k/Lib/weakref.py

gregory.p.smith python-3000-checkins at python.org
Mon Aug 18 05:41:47 CEST 2008


Author: gregory.p.smith
Date: Mon Aug 18 05:41:46 2008
New Revision: 65805

Log:
ReferenceError is undefined.  causes test___all__.py to fail.  remove it from __all__


Modified:
   python/branches/py3k/Lib/weakref.py

Modified: python/branches/py3k/Lib/weakref.py
==============================================================================
--- python/branches/py3k/Lib/weakref.py	(original)
+++ python/branches/py3k/Lib/weakref.py	Mon Aug 18 05:41:46 2008
@@ -25,7 +25,7 @@
 ProxyTypes = (ProxyType, CallableProxyType)
 
 __all__ = ["ref", "proxy", "getweakrefcount", "getweakrefs",
-           "WeakKeyDictionary", "ReferenceError", "ReferenceType", "ProxyType",
+           "WeakKeyDictionary", "ReferenceType", "ProxyType",
            "CallableProxyType", "ProxyTypes", "WeakValueDictionary",
            "WeakSet"]
 


More information about the Python-3000-checkins mailing list