diff options
author | Raymond Hettinger <python@rcn.com> | 2004-06-13 05:46:14 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-06-13 05:46:14 (GMT) |
commit | 59efe363b6149e1f1860517c53bbdf2745536b42 (patch) | |
tree | 218a96e4bf1f69ebaa82a3caf5dd95b94e9345e9 /Lib | |
parent | 2e3dfaf7070900c459d5879530dbdb3680f7fb9d (diff) | |
download | cpython-59efe363b6149e1f1860517c53bbdf2745536b42.zip cpython-59efe363b6149e1f1860517c53bbdf2745536b42.tar.gz cpython-59efe363b6149e1f1860517c53bbdf2745536b42.tar.bz2 |
Add heapq to list of __all__ checks.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test___all__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test___all__.py b/Lib/test/test___all__.py index 0370c1a..6a6c99f 100644 --- a/Lib/test/test___all__.py +++ b/Lib/test/test___all__.py @@ -99,6 +99,7 @@ class AllTest(unittest.TestCase): self.check_all("glob") self.check_all("gopherlib") self.check_all("gzip") + self.check_all("heapq") self.check_all("htmllib") self.check_all("httplib") self.check_all("ihooks") |