summaryrefslogtreecommitdiff
path: root/Lib/test/test_int.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed Py3k warnings in tests for issue #24731.Serhiy Storchaka2015-11-291-7/+10
* Issue #24731: Fixed crash on converting objects with special methodsSerhiy Storchaka2015-11-251-0/+15
* Issue #25678: Copy buffer objects to null-terminated strings.Serhiy Storchaka2015-11-201-4/+21
* Issue #16761: Raise TypeError when int() or long() called with base argument ...Serhiy Storchaka2012-12-281-12/+2
* Issue #16792: Use assertIs() to test identity.Serhiy Storchaka2012-12-281-4/+4
* Issue #16793. Replace deprecated unittest asserts with modern counterparts.Serhiy Storchaka2012-12-281-5/+5
* Issue #16792: Mark small ints test as CPython-only.Serhiy Storchaka2012-12-271-0/+8
* Issue #16790: add some of the recent issue #16045 int tests to test_long.Chris Jerdonek2012-12-271-10/+19
* Issue #16045: add more unit tests for built-in int()Andrew Svetlov2012-12-231-0/+54
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-1/+1
* Issue #8825: additional testcases for int(string, 0) and long(string, 0).Mark Dickinson2010-05-261-0/+6
* use assert[Not]IsInstance where appropriateEzio Melotti2010-01-241-5/+5
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-6/+6
* Issue #3166: Make long -> float (and int -> float) conversionsMark Dickinson2009-04-201-0/+34
* Issue #3439: add bit_length method to int and long.Mark Dickinson2008-12-171-0/+35
* Moved testing of builtin types out of test_builtin and into type specific mod...Benjamin Peterson2008-05-031-0/+331