From 9762a3eb87ac47fc2d72c99849cc8041ae53b06e Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Thu, 2 Apr 2009 01:14:45 +0000 Subject: [PATCH] add io and _pyio to test___all__ --- Lib/test/test___all__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/test/test___all__.py b/Lib/test/test___all__.py index 052cc20c45d..4b56749abef 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")