diff options
Diffstat (limited to 'Lib/test/test_extcall.py')
-rw-r--r-- | Lib/test/test_extcall.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Lib/test/test_extcall.py b/Lib/test/test_extcall.py index 9effac7..1e80387 100644 --- a/Lib/test/test_extcall.py +++ b/Lib/test/test_extcall.py @@ -191,11 +191,15 @@ print Foo.method(x, *(1, 2)) try: print Foo.method(*(1, 2, 3)) except TypeError, err: - print err + pass +else: + print 'expected a TypeError for unbound method call' try: print Foo.method(1, *(2, 3)) except TypeError, err: - print err + pass +else: + print 'expected a TypeError for unbound method call' # A PyCFunction that takes only positional parameters should allow an # empty keyword dictionary to pass without a complaint, but raise a |