summaryrefslogtreecommitdiff
path: root/Lib/test/test_long.py
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2012-04-20 21:44:09 +0100
committerMark Dickinson <mdickinson@enthought.com>2012-04-20 21:44:09 +0100
commitbafd86b424add695fad4d0e204907fc1a94cfef6 (patch)
tree4017cb66dac9bb3ccd3f7b5283556414cc9d7b50 /Lib/test/test_long.py
parenta2a089f92e66b0c77c3118c0804e808d2cf8078b (diff)
parent5c338542fe52f9bddb715843ca797acb4acf0db5 (diff)
downloadcpython-bafd86b424add695fad4d0e204907fc1a94cfef6.tar.gz
Issue #14630: Merge fix from 3.2.
Diffstat (limited to 'Lib/test/test_long.py')
-rw-r--r--Lib/test/test_long.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/Lib/test/test_long.py b/Lib/test/test_long.py
index 05b3e3e03f..b417bea215 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)