diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-04-02 01:14:45 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-04-02 01:14:45 (GMT) |
commit | 9762a3eb87ac47fc2d72c99849cc8041ae53b06e (patch) | |
tree | 558aa0eb2b9ab187c883024f681539803d858aa8 /Lib/test/test___all__.py | |
parent | bfb959404f01fafafd3e2bd5d0ee8539ba17246e (diff) | |
download | cpython-9762a3eb87ac47fc2d72c99849cc8041ae53b06e.zip cpython-9762a3eb87ac47fc2d72c99849cc8041ae53b06e.tar.gz cpython-9762a3eb87ac47fc2d72c99849cc8041ae53b06e.tar.bz2 |
add io and _pyio to test___all__
Diffstat (limited to 'Lib/test/test___all__.py')
-rw-r--r-- | Lib/test/test___all__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test___all__.py b/Lib/test/test___all__.py index 052cc20..4b56749 100644 --- a/Lib/test/test___all__.py +++ b/Lib/test/test___all__.py @@ -75,6 +75,8 @@ class AllTest(unittest.TestCase): self.check_all("heapq") self.check_all("http.client") self.check_all("ihooks") + self.check_all("io") + self.check_all("_pyio") self.check_all("imaplib") self.check_all("imghdr") self.check_all("keyword") |