diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-02-26 22:22:47 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-02-26 22:22:47 +0000 |
commit | 2633c69fae7e413b2b64b01d8c0c901ae649a225 (patch) | |
tree | 144a1f97f427f019a8ddaae96a8f0da6a09df985 /Lib/weakref.py | |
parent | Fix another loop over a dict that may change... :-( (diff) | |
download | cpython-2633c69fae7e413b2b64b01d8c0c901ae649a225.tar.gz cpython-2633c69fae7e413b2b64b01d8c0c901ae649a225.tar.bz2 cpython-2633c69fae7e413b2b64b01d8c0c901ae649a225.zip |
Remove the exceptions builtin module, all the exceptions are already builtin.
Diffstat (limited to 'Lib/weakref.py')
-rw-r--r-- | Lib/weakref.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/weakref.py b/Lib/weakref.py index c20d1b6000a..33896f5f601 100644 --- a/Lib/weakref.py +++ b/Lib/weakref.py @@ -20,8 +20,6 @@ from _weakref import ( ProxyType, ReferenceType) -from exceptions import ReferenceError - ProxyTypes = (ProxyType, CallableProxyType) |