History log of /external/python/cpython2/Lib/test/test_int.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
43e9007767618aac7d6c30228518ae375ebb3008 29-Nov-2015 Serhiy Storchaka <storchaka@gmail.com> Fixed Py3k warnings in tests for issue #24731.
/external/python/cpython2/Lib/test/test_int.py
8d30ad7c8ad5df59be8a65c8f8dab0d13be00dab 25-Nov-2015 Serhiy Storchaka <storchaka@gmail.com> Issue #24731: Fixed crash on converting objects with special methods
__str__, __trunc__, and __float__ returning instances of subclasses of
str, long, and float to subclasses of str, long, and float correspondingly.
/external/python/cpython2/Lib/test/test_int.py
6156560e4b40ae81304d80b5a932fd90e6b4ba80 20-Nov-2015 Serhiy Storchaka <storchaka@gmail.com> Issue #25678: Copy buffer objects to null-terminated strings.

Avoid buffer overreads when int(), long(), float(), and compile()
are passed buffer objects. Similar code is removed from the
complex() constructor, where it was not reachable.

Patch backported from issue #24802 by Eryk Sun.
/external/python/cpython2/Lib/test/test_int.py
cf095f8e0f0ed1111995a5b8a8a5ebdb189683f2 28-Dec-2012 Serhiy Storchaka <storchaka@gmail.com> Issue #16761: Raise TypeError when int() or long() called with base argument only.
/external/python/cpython2/Lib/test/test_int.py
c90be30b0de9089e3abef0f288caf4a693f81356 27-Dec-2012 Serhiy Storchaka <storchaka@gmail.com> Issue #16792: Use assertIs() to test identity.
/external/python/cpython2/Lib/test/test_int.py
8876145fabec7924981f36019f0c2e45f73fbad2 27-Dec-2012 Serhiy Storchaka <storchaka@gmail.com> Issue #16793. Replace deprecated unittest asserts with modern counterparts.
/external/python/cpython2/Lib/test/test_int.py
270767b2ceb5452d052b280eb1b174d7a32d43f5 27-Dec-2012 Serhiy Storchaka <storchaka@gmail.com> Issue #16792: Mark small ints test as CPython-only.
/external/python/cpython2/Lib/test/test_int.py
6f70fe804690bbfea9caefe1ba01029aa1abf0eb 27-Dec-2012 Chris Jerdonek <chris.jerdonek@gmail.com> Issue #16790: add some of the recent issue #16045 int tests to test_long.

This patch also provides a simple way to share tests going forward
between test_int and test_long.
/external/python/cpython2/Lib/test/test_int.py
cddcafaf6b11f4da66fdccba20a777ccb55b800b 22-Dec-2012 Andrew Svetlov <andrew.svetlov@gmail.com> Issue #16045: add more unit tests for built-in int()

Patch by Chris Jerdonek.
/external/python/cpython2/Lib/test/test_int.py
2623a37852153363335956afab010cb0beb7e74e 21-Nov-2010 Ezio Melotti <ezio.melotti@gmail.com> Merged revisions 86596 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line

#9424: Replace deprecated assert* methods in the Python test suite.
........
/external/python/cpython2/Lib/test/test_int.py
784a47f2c0fcdee61518407900baa1e08025182b 26-May-2010 Mark Dickinson <dickinsm@gmail.com> Issue #8825: additional testcases for int(string, 0) and long(string, 0).
/external/python/cpython2/Lib/test/test_int.py
b0f5adc3f4e098b1744eeac65fc830fb1df2b8ab 24-Jan-2010 Ezio Melotti <ezio.melotti@gmail.com> use assert[Not]IsInstance where appropriate
/external/python/cpython2/Lib/test/test_int.py
5c8da86f3a515ce1a6d5f27fd15e3c5f4d8e931e 01-Jul-2009 Benjamin Peterson <benjamin@python.org> convert usage of fail* to assert*
/external/python/cpython2/Lib/test/test_int.py
6736cf8d20b67b74e8e959622132963285156242 20-Apr-2009 Mark Dickinson <dickinsm@gmail.com> Issue #3166: Make long -> float (and int -> float) conversions
correctly rounded, using round-half-to-even. This ensures that the
value of float(n) doesn't depend on whether we're using 15-bit digits
or 30-bit digits for Python longs.
/external/python/cpython2/Lib/test/test_int.py
1a707981c8b57e5ca7c5b8aa38d3e5e6ca235dbf 17-Dec-2008 Mark Dickinson <dickinsm@gmail.com> Issue #3439: add bit_length method to int and long.
Thanks Fredrik Johansson and Victor Stinner for code,
Raymond Hettinger for review.
/external/python/cpython2/Lib/test/test_int.py
979395b7a8be422dfc9a081f1cd77260c6ea9aef 03-May-2008 Benjamin Peterson <benjamin@python.org> Moved testing of builtin types out of test_builtin and into type specific modules
/external/python/cpython2/Lib/test/test_int.py