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

View file

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