diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2012-04-20 20:44:09 (GMT) |
---|---|---|
committer | Mark Dickinson <mdickinson@enthought.com> | 2012-04-20 20:44:09 (GMT) |
commit | 9a359bd97f5fc0ab3ae830ad874eda6e5e76b14c (patch) | |
tree | 8bcf005c7f780b3496e5a894c9575cf5a6b59dac /Lib/test | |
parent | e28465482c19ec0bb43c1529c6fb1a823915f2d3 (diff) | |
parent | bcc17eefd2b630aca2fc0f4e27f274a028030542 (diff) | |
download | cpython-9a359bd97f5fc0ab3ae830ad874eda6e5e76b14c.zip cpython-9a359bd97f5fc0ab3ae830ad874eda6e5e76b14c.tar.gz cpython-9a359bd97f5fc0ab3ae830ad874eda6e5e76b14c.tar.bz2 |
Issue #14630: Merge fix from 3.2.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_long.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Lib/test/test_long.py b/Lib/test/test_long.py index 05b3e3e..b417bea 100644 --- a/Lib/test/test_long.py +++ b/Lib/test/test_long.py @@ -1228,6 +1228,20 @@ class LongTest(unittest.TestCase): self.assertRaises(TypeError, myint.from_bytes, 0, 'big') self.assertRaises(TypeError, int.from_bytes, 0, 'big', True) + def test_access_to_nonexistent_digit_0(self): + # http://bugs.python.org/issue14630: A bug in _PyLong_Copy meant that + # ob_digit[0] was being incorrectly accessed for instances of a + # subclass of int, with value 0. + class Integer(int): + def __new__(cls, value=0): + self = int.__new__(cls, value) + self.foo = 'foo' + return self + + integers = [Integer(0) for i in range(1000)] + for n in map(int, integers): + self.assertEqual(n, 0) + def test_main(): support.run_unittest(LongTest) |