diff options
author | Brett Cannon <bcannon@gmail.com> | 2007-02-27 00:15:55 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2007-02-27 00:15:55 (GMT) |
commit | ba7bf49a54223b940b773c8678ab8c60da12a155 (patch) | |
tree | 48a0d5941089fdf3a1bc926ac6b94be26c84529e /Lib/test/test_file.py | |
parent | 44c526174d9296ce358ccee9652382e7ea5377f4 (diff) | |
download | cpython-ba7bf49a54223b940b773c8678ab8c60da12a155.zip cpython-ba7bf49a54223b940b773c8678ab8c60da12a155.tar.gz cpython-ba7bf49a54223b940b773c8678ab8c60da12a155.tar.bz2 |
Remove the ability to slice/index on exceptions per PEP 352.
Diffstat (limited to 'Lib/test/test_file.py')
-rw-r--r-- | Lib/test/test_file.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_file.py b/Lib/test/test_file.py index 7eb052b..a57ab43 100644 --- a/Lib/test/test_file.py +++ b/Lib/test/test_file.py @@ -156,7 +156,7 @@ class OtherFileTests(unittest.TestCase): try: f = open(TESTFN, bad_mode) except ValueError as msg: - if msg[0] != 0: + if msg.message != 0: s = str(msg) if s.find(TESTFN) != -1 or s.find(bad_mode) == -1: self.fail("bad error message for invalid mode: %s" % s) |