diff options
author | Raymond Hettinger <python@rcn.com> | 2008-02-05 00:20:01 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-02-05 00:20:01 (GMT) |
commit | 93fa608626562d3925104f98372dbdd27aeafcf0 (patch) | |
tree | 2f2b204763333a3e637e3effa274f3b8895c9124 /Lib/abc.py | |
parent | 2add352c435f8973274f16c37eb6246f86799722 (diff) | |
download | cpython-93fa608626562d3925104f98372dbdd27aeafcf0.zip cpython-93fa608626562d3925104f98372dbdd27aeafcf0.tar.gz cpython-93fa608626562d3925104f98372dbdd27aeafcf0.tar.bz2 |
Moved WeakSet into a bootstap module use by abc.py.
This makes it possible to use ABCs in weakref.py
(which will be done in a later checkin).
Diffstat (limited to 'Lib/abc.py')
-rw-r--r-- | Lib/abc.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ """Abstract Base Classes (ABCs) according to PEP 3119.""" -from weakref import WeakSet +from _weakrefset import WeakSet def abstractmethod(funcobj): """A decorator indicating abstract methods. |