summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_pep352.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pep352.py b/Lib/test/test_pep352.py
index 5cfefd0..cd91ca7 100644
--- a/Lib/test/test_pep352.py
+++ b/Lib/test/test_pep352.py
@@ -21,7 +21,7 @@ class ExceptionClassTests(unittest.TestCase):
def test_inheritance(self):
# Make sure the inheritance hierarchy matches the documentation
exc_set = set()
- for object_ in __builtins__.__dict__.values():
+ for object_ in __builtin__.__dict__.values():
try:
if issubclass(object_, BaseException):
exc_set.add(object_.__name__)