From e029242d5cfb8a3879bdc7324db4449e6a8451cf Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Fri, 5 Oct 2001 21:54:09 +0000 Subject: ReferenceError is now built-in, so pick it up from the right place. It still needs to be here to preserve the API. --- Lib/weakref.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Lib/weakref.py b/Lib/weakref.py index 0cf6bf9..39ec330 100644 --- a/Lib/weakref.py +++ b/Lib/weakref.py @@ -16,11 +16,13 @@ from _weakref import \ getweakrefs, \ ref, \ proxy, \ - ReferenceError, \ CallableProxyType, \ ProxyType, \ ReferenceType +from exceptions import ReferenceError + + ProxyTypes = (ProxyType, CallableProxyType) __all__ = ["ref", "proxy", "getweakrefcount", "getweakrefs", -- cgit v0.12