diff options
Diffstat (limited to 'Lib/test/test_copy_reg.py')
-rw-r--r-- | Lib/test/test_copy_reg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_copy_reg.py b/Lib/test/test_copy_reg.py index c3d3964..34ca4ec 100644 --- a/Lib/test/test_copy_reg.py +++ b/Lib/test/test_copy_reg.py @@ -96,7 +96,7 @@ class CopyRegTestCase(unittest.TestCase): e.restore() # Ensure invalid codes blow up. - for code in -1, 0, 0x80000000L: + for code in -1, 0, 0x80000000: self.assertRaises(ValueError, copy_reg.add_extension, mod, func, code) |