diff options
author | Georg Brandl <georg@python.org> | 2006-09-30 09:03:42 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-09-30 09:03:42 (GMT) |
commit | 3267d28f9db6f5594167f6262d8882b31542dccf (patch) | |
tree | 794617ae49f01a8f577a896e80d165b63a6de141 /Lib | |
parent | 5d59c0983431b0b7d3929dd2851b00e20e1d8c15 (diff) | |
download | cpython-3267d28f9db6f5594167f6262d8882b31542dccf.zip cpython-3267d28f9db6f5594167f6262d8882b31542dccf.tar.gz cpython-3267d28f9db6f5594167f6262d8882b31542dccf.tar.bz2 |
Bug #1566800: make sure that EnvironmentError can be called with any
number of arguments, as was the case in Python 2.4.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_exceptions.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py index 27d88a0..585d6fe 100644 --- a/Lib/test/test_exceptions.py +++ b/Lib/test/test_exceptions.py @@ -196,11 +196,16 @@ class ExceptionTests(unittest.TestCase): (SystemExit, ('foo',), {'message' : 'foo', 'args' : ('foo',), 'code' : 'foo'}), (IOError, ('foo',), - {'message' : 'foo', 'args' : ('foo',)}), + {'message' : 'foo', 'args' : ('foo',), 'filename' : None, + 'errno' : None, 'strerror' : None}), (IOError, ('foo', 'bar'), - {'message' : '', 'args' : ('foo', 'bar')}), + {'message' : '', 'args' : ('foo', 'bar'), 'filename' : None, + 'errno' : 'foo', 'strerror' : 'bar'}), (IOError, ('foo', 'bar', 'baz'), - {'message' : '', 'args' : ('foo', 'bar')}), + {'message' : '', 'args' : ('foo', 'bar'), 'filename' : 'baz', + 'errno' : 'foo', 'strerror' : 'bar'}), + (IOError, ('foo', 'bar', 'baz', 'quux'), + {'message' : '', 'args' : ('foo', 'bar', 'baz', 'quux')}), (EnvironmentError, ('errnoStr', 'strErrorStr', 'filenameStr'), {'message' : '', 'args' : ('errnoStr', 'strErrorStr'), 'strerror' : 'strErrorStr', 'errno' : 'errnoStr', |