commit | 4c52f52ef3051af3b3504b7a0818e5948daa03a7 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Mon Jun 23 03:29:28 2008 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Mon Jun 23 03:29:28 2008 +0000 |
tree | b359906dbf08dac123714bbd8140987123ff4f0d | |
parent | 9da18b313342ec6d81bd5ea5d19c1d05f6a41a08 [diff] [blame] |
Issue 3161: Missing import and test.
diff --git a/Lib/_abcoll.py b/Lib/_abcoll.py index 5acbb70..85d733f 100644 --- a/Lib/_abcoll.py +++ b/Lib/_abcoll.py
@@ -9,6 +9,7 @@ """ from abc import ABCMeta, abstractmethod +import sys __all__ = ["Hashable", "Iterable", "Iterator", "Sized", "Container", "Callable",