summaryrefslogtreecommitdiff
path: root/Lib/test/test_long.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #4258: Make it possible to use 30-bit digits for PyLongs:Mark Dickinson2009-03-181-1/+30
* Issue #4707: round(x, n) now returns an integer when x is an integer.Mark Dickinson2009-01-281-0/+75
* Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ fromMark Dickinson2009-01-271-3/+4
* Issue 4842, patch 2/2: int('3L') should be invalid in Python 3.x.Mark Dickinson2009-01-201-0/+10
* Issue #4910 (1st patch of a series): fix int() and the correspondingMark Dickinson2009-01-121-4/+18
* Forward merge of r67822 to py3k: add bit_length method to int.Mark Dickinson2008-12-171-0/+36
* remove some more references to __cmp__ #1717Benjamin Peterson2008-10-161-1/+13
* Merged revisions 65459,65472,65481,65518,65536,65581,65609,65637,65641,65644-...Georg Brandl2008-08-121-1/+2
* Optimization to stop creating new small longs and use theFacundo Batista2008-07-241-0/+18
* move test_long_future into test_longBenjamin Peterson2008-07-131-0/+35
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-2/+2
* Merged revisions 63078 via svnmerge fromEric Smith2008-05-111-1/+1
* Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,...Christian Heimes2008-05-041-2/+220
* Renamed test_format to test__format__, since it really tests the __format__ m...Eric Smith2008-02-111-1/+1
* Partially revert r60376: restore ability for ints to be automatically convert...Eric Smith2008-01-281-3/+9
* Restrict format presentation types to those specified in the 'Standard Format...Eric Smith2008-01-271-6/+11
* long(float('nan')) raises an OverflowError as discussed on the mailing list a...Christian Heimes2008-01-151-1/+1
* Fixed test_longChristian Heimes2008-01-041-2/+2
* Merged revisions 59680-59695 via svnmerge fromChristian Heimes2008-01-041-0/+4
* Removed PyInt_GetMax and sys.maxintChristian Heimes2007-12-041-16/+16
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-301-11/+0
* Added format tests.Eric Smith2007-08-301-2/+13
* Implementation of PEP 3101, Advanced String Formatting.Eric Smith2007-08-251-0/+44
* math.floor(<int>) now returns the argument,Guido van Rossum2007-08-241-1/+3
* Merged revisions 56125-56153 via svnmerge fromGuido van Rossum2007-07-031-5/+2
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-4/+1
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-9/+10
* Fix various spots where int/long and str/unicode unificationWalter Dörwald2007-05-031-1/+1
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-34/+34
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-3/+20
* repr() of a long int no longer produces a trailing 'L'.Guido van Rossum2006-08-181-3/+3
* SF bug #1224347: int/long unification and hex()Raymond Hettinger2005-06-291-1/+1
* Port test_long.py to unittest.Walter Dörwald2005-06-131-508/+451
* SF bug #513866: Float/long comparison anomaly.Tim Peters2004-09-231-2/+102
* Changed Karatsuba cutoff to match current reality.Tim Peters2004-08-301-1/+1
* test_float_overflow(): make shuge (added last week) a little lessGuido van Rossum2003-02-031-1/+1
* Fix SF bug# 676155, RuntimeWarning with tp_compareNeal Norwitz2003-01-281-2/+4
* Change int() so that passing a string, unicode, float or long argumentWalter Dörwald2002-11-191-10/+14
* Added a test specifically to tickle Karatsuba; it costs no appreciableTim Peters2002-08-131-0/+26
* test_division(): Added one larger digits value, to ensure that theTim Peters2002-08-131-1/+2
* Machines-- and Python --are a lot faster in relevant ways since thisTim Peters2002-08-131-3/+5
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
* Format strings (tuples,) appropriatelyNeal Norwitz2002-04-011-1/+1
* Return reasonable results for math.log(long) and math.log10(long) (we wereTim Peters2001-09-051-3/+37
* Revert one of the "division fixes" in test_long. It intends to try bothTim Peters2001-09-041-2/+2
* The first batch of changes recommended by the fixdiv tool. These areGuido van Rossum2001-09-041-5/+5
* Whitespace normalization.Tim Peters2001-09-041-1/+1
* Raise OverflowError when appropriate on long->float conversion. Most ofTim Peters2001-09-041-0/+37
* New restriction on pow(x, y, z): If z is not None, x and y must be ofTim Peters2001-09-031-4/+13
* Add a test for the new // operator too.Tim Peters2001-08-231-0/+4