diff options
-rw-r--r-- | Lib/test/test_b1.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_b1.py b/Lib/test/test_b1.py index 8adcbef..6e85453 100644 --- a/Lib/test/test_b1.py +++ b/Lib/test/test_b1.py @@ -53,6 +53,7 @@ class D(C): def __call__(self): pass y = D() if not callable(y): raise TestFailed, 'callable(y)' +y() print 'chr' if chr(32) != ' ': raise TestFailed, 'chr(32)' |