diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-08-18 00:51:19 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-08-18 00:51:19 (GMT) |
commit | e8d0bf9160440d585663aa9f66e820ccf3e1ebf5 (patch) | |
tree | b7e6ce814efe3ebc2dba7d9ee57d9d4a08aedcfd /Lib/weakref.py | |
parent | 2f5cb3468e96b23024fcc32a56ef87ff2880f8f7 (diff) | |
download | cpython-e8d0bf9160440d585663aa9f66e820ccf3e1ebf5.zip cpython-e8d0bf9160440d585663aa9f66e820ccf3e1ebf5.tar.gz cpython-e8d0bf9160440d585663aa9f66e820ccf3e1ebf5.tar.bz2 |
Merged revisions 65795 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r65795 | brett.cannon | 2008-08-17 17:46:22 -0700 (Sun, 17 Aug 2008) | 3 lines
Update __all__ for cookielib, csv, os, and urllib2 for objects imported into
the module but exposed as part of the API.
........
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 64d962c..3301070 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", "ReferenceType", "ProxyType", + "WeakKeyDictionary", "ReferenceError", "ReferenceType", "ProxyType", "CallableProxyType", "ProxyTypes", "WeakValueDictionary", "WeakSet"] |