From eecf035aa209cedb4ede08b527120ba3946a0c96 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 30 Dec 1994 17:17:46 +0000 Subject: [PATCH] Test new __import__ module, test reload of built-in module, test has_key() on empty dictionary --- Lib/test/test_b1.py | 8 ++++++++ Lib/test/test_b2.py | 4 ++-- Lib/test/test_types.py | 1 + Lib/test/testall.out | 1 + 4 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_b1.py b/Lib/test/test_b1.py index 3fab517c0ff..356edd2813b 100644 --- a/Lib/test/test_b1.py +++ b/Lib/test/test_b1.py @@ -2,6 +2,14 @@ from test_support import * +print '__import__' +__import__('sys') +__import__('strop') +__import__('string') +try: __import__('spamspam') +except ImportError: pass +else: raise TestFailed, "__import__('spamspam') should fail" + print 'abs' if abs(0) <> 0: raise TestFailed, 'abs(0)' if abs(1234) <> 1234: raise TestFailed, 'abs(1234)' diff --git a/Lib/test/test_b2.py b/Lib/test/test_b2.py index aacb4035cc0..99637794d82 100644 --- a/Lib/test/test_b2.py +++ b/Lib/test/test_b2.py @@ -148,8 +148,8 @@ def __getitem__(self, i): print 'reload' -#import strop -#reload(strop) +import marshal +reload(marshal) import string reload(string) import sys diff --git a/Lib/test/test_types.py b/Lib/test/test_types.py index 6a3f7729ffb..51c76dc6d98 100644 --- a/Lib/test/test_types.py +++ b/Lib/test/test_types.py @@ -165,6 +165,7 @@ def revcmp(a, b): return cmp(b, a) print '6.6 Mappings == Dictionaries' d = {} if d.keys() <> []: raise TestFailed, '{}.keys()' +if d.has_key('a') <> 0: raise TestFailed, '{}.has_key(\'a\')' if len(d) <> 0: raise TestFailed, 'len({})' d = {'a': 1, 'b': 2} if len(d) <> 2: raise TestFailed, 'len(dict)' diff --git a/Lib/test/testall.out b/Lib/test/testall.out index 38586372d1b..709580c932f 100644 --- a/Lib/test/testall.out +++ b/Lib/test/testall.out @@ -54,6 +54,7 @@ XXX Not yet implemented test_builtin 4. Built-in functions test_b1 +__import__ abs apply callable