make the output of _test() suitable for use in the regression test

This commit is contained in:
Jeremy Hylton 2001-01-19 03:30:22 +00:00
parent e27a7b8074
commit 1a34c879bc
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ def _test():
else: else:
print "accessible" print "accessible"
try: try:
print "b._get_.func_defaults =", b._get_.func_defaults, print "b._get_.func_defaults =", map(type, b._get_.func_defaults),
except: except:
print "inaccessible" print "inaccessible"
else: else: