Test new __import__ module, test reload of built-in module, test

has_key() on empty dictionary
This commit is contained in:
Guido van Rossum 1994-12-30 17:17:46 +00:00
parent 5505d56f08
commit eecf035aa2
4 changed files with 12 additions and 2 deletions

View file

@ -148,8 +148,8 @@ if reduce(lambda x, y: x+y, Squares(0), 0) != 0:
print 'reload'
#import strop
#reload(strop)
import marshal
reload(marshal)
import string
reload(string)
import sys