diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-01-19 03:30:22 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-01-19 03:30:22 (GMT) |
commit | 1a34c879bcf23c65b6228925f5338f9363f8541e (patch) | |
tree | f81d61f0b9141d369b018fb94ecdc07fc1ed18b3 | |
parent | e27a7b80748c902ce956287f14857666db523c4b (diff) | |
download | cpython-1a34c879bcf23c65b6228925f5338f9363f8541e.zip cpython-1a34c879bcf23c65b6228925f5338f9363f8541e.tar.gz cpython-1a34c879bcf23c65b6228925f5338f9363f8541e.tar.bz2 |
make the output of _test() suitable for use in the regression test
-rw-r--r-- | Lib/Bastion.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/Bastion.py b/Lib/Bastion.py index a6e716b..868b0b6 100644 --- a/Lib/Bastion.py +++ b/Lib/Bastion.py @@ -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: |