- 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
- 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
- 3fa1aae Issue #17516: do not create useless tuple: remove dummy commas in tests by Victor Stinner · 12 years ago
- 9a359bd Issue #14630: Merge fix from 3.2. by Mark Dickinson · 13 years ago
- bcc17ee Issue #14630: Fix an incorrect access of ob_digit[0] for a zero instance of an int subclass. by Mark Dickinson · 13 years ago
- 30970e9 Issue #10925: Add equivalent pure Python code for the builtin int-to-float conversion to test_long. by Mark Dickinson · 13 years ago
- 3ab08ca Issue #10624: Use support.requires_IEEE_754 in all appropriate tests. by Eric Smith · 14 years ago
- cbd2ab1 #1513299: cleanup some map() uses where a comprehension works better. by Georg Brandl · 14 years ago
- f9a5a8e Issue #2844: Make int('42', n) consistently raise ValueError for by Mark Dickinson · 14 years ago
- 56544db Merged revisions 81551 via svnmerge from by Mark Dickinson · 14 years ago
- 1b37e87 Merged revisions 78093 via svnmerge from by Georg Brandl · 15 years ago
- 89fad14 Merged revisions 78018,78035-78040,78042-78043,78046,78048-78052,78054,78059,78075-78080 via svnmerge from by Georg Brandl · 15 years ago
- c36c378 Issue #1023290: Added API for the conversion of longs to bytes and vice-versa. by Alexandre Vassalotti · 15 years ago
- 2cfda80 Merged revisions 77071 via svnmerge from by Mark Dickinson · 15 years ago
- a4e1506 Merged revisions 77066 via svnmerge from by Mark Dickinson · 15 years ago
- cbb6274 Merged revisions 77062 via svnmerge from by Mark Dickinson · 15 years ago
- 5c2db37 Issue #7435: Remove duplicate int/long tests, and other by Mark Dickinson · 15 years ago
- c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
- c630039 Merged revisions 71772 via svnmerge from by Mark Dickinson · 16 years ago
- bd79264 Issue #4258: Make it possible to use 30-bit digits for PyLongs: by Mark Dickinson · 16 years ago
- 1124e71 Issue #4707: round(x, n) now returns an integer when x is an integer. by Mark Dickinson · 16 years ago
- a56c467 Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ from by Mark Dickinson · 16 years ago
- 9ffc020 Issue 4842, patch 2/2: int('3L') should be invalid in Python 3.x. by Mark Dickinson · 16 years ago
- e5e298f Issue #4910 (1st patch of a series): fix int() and the corresponding by Mark Dickinson · 16 years ago
- 54bc1ec Forward merge of r67822 to py3k: add bit_length method to int. by Mark Dickinson · 16 years ago
- 6019208 remove some more references to __cmp__ #1717 by Benjamin Peterson · 16 years ago
- 6aa2d1f Merged revisions 65459,65472,65481,65518,65536,65581,65609,65637,65641,65644-65645 via svnmerge from by Georg Brandl · 16 years ago
- 6e6f59b Optimization to stop creating new small longs and use the by Facundo Batista · 16 years ago
- 875d4c0 move test_long_future into test_long by Benjamin Peterson · 16 years ago
- ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
- 5807c41 Merged revisions 63078 via svnmerge from by Eric Smith · 16 years ago
- 81ee3ef Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,62463,62465-62466,62469,62474,62476-62478,62480,62485,62492,62497-62498,62500,62507,62513-62514,62516,62521,62531,62535,62545-62546,62548-62551,62553-62559,62569,62574,62577,62593,62595,62604-62606,62608,62616,62626-62627,62636,62638,62644-62645,62647-62648,62651-62653,62656,62661,62663,62680,62686-62687,62696,62699-62703,62711 via svnmerge from by Christian Heimes · 17 years ago
- 0dd1b63 Renamed test_format to test__format__, since it really tests the __format__ method. It was hiding another method of the same name. by Eric Smith · 17 years ago
- fa767ef Partially revert r60376: restore ability for ints to be automatically converted to floats, if a float type specifier is given to an int. PEP 3101 should be clarified on this point.Also, remove unused local variables left over from r60376. by Eric Smith · 17 years ago
- 7b69c6c Restrict format presentation types to those specified in the 'Standard Format Specifiers' section of PEP 3101. by Eric Smith · 17 years ago
- 386cd1e long(float('nan')) raises an OverflowError as discussed on the mailing list a week ago by Christian Heimes · 17 years ago
- 1aa7b30 Fixed test_long by Christian Heimes · 17 years ago
- a34706f Merged revisions 59680-59695 via svnmerge from by Christian Heimes · 17 years ago
- a37d4c6 Removed PyInt_GetMax and sys.maxint by Christian Heimes · 17 years ago
- d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
- 185e30c Added format tests. by Eric Smith · 17 years ago
- 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
- 28bbe42 math.floor(<int>) now returns the argument, by Guido van Rossum · 17 years ago
- c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 17 years ago
- cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
- 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 18 years ago
- aa97f04 Fix various spots where int/long and str/unicode unification by Walter Dörwald · 18 years ago
- e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
- 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
- d2dbecb repr() of a long int no longer produces a trailing 'L'. by Guido van Rossum · 18 years ago
- 3296e69 SF bug #1224347: int/long unification and hex() by Raymond Hettinger · 19 years ago
- a002159 Port test_long.py to unittest. by Walter Dörwald · 19 years ago
- 307fa78 SF bug #513866: Float/long comparison anomaly. by Tim Peters · 20 years ago
- daec961 Changed Karatsuba cutoff to match current reality. by Tim Peters · 20 years ago
- 7aa56c9 test_float_overflow(): make shuge (added last week) a little less by Guido van Rossum · 22 years ago
- abcb0c0 Fix SF bug# 676155, RuntimeWarning with tp_compare by Neal Norwitz · 22 years ago
- f171540 Change int() so that passing a string, unicode, float or long argument by Walter Dörwald · 22 years ago
- 7f270ba Added a test specifically to tickle Karatsuba; it costs no appreciable runtime. by Tim Peters · 22 years ago
- d0876b8 test_division(): Added one larger digits value, to ensure that the by Tim Peters · 22 years ago
- 28b0e2a Machines-- and Python --are a lot faster in relevant ways since this by Tim Peters · 22 years ago
- 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
- 05c09d0 Format strings (tuples,) appropriately by Neal Norwitz · 23 years ago
- 7852616 Return reasonable results for math.log(long) and math.log10(long) (we were by Tim Peters · 23 years ago
- 0dad0f7 Revert one of the "division fixes" in test_long. It intends to try both by Tim Peters · 23 years ago
- 54e54c6 The first batch of changes recommended by the fixdiv tool. These are by Guido van Rossum · 23 years ago
- 83e7ccc Whitespace normalization. by Tim Peters · 23 years ago
- 9fffa3e Raise OverflowError when appropriate on long->float conversion. Most of by Tim Peters · 23 years ago
- 32f453e New restriction on pow(x, y, z): If z is not None, x and y must be of by Tim Peters · 23 years ago
- a365309 Add a test for the new // operator too. by Tim Peters · 23 years ago
- 26c7fa3 SF bug [#454456] int overflow code needs tests. by Tim Peters · 23 years ago
- 971e069 Remove test_long's expected-output file. by Tim Peters · 23 years ago
- 3661908 This patch removes all uses of "assert" in the regression test suite by Marc-André Lemburg · 24 years ago
- 004d5e6 Make reindent.py happy (convert everything to 4-space indents!). by Fred Drake · 24 years ago
- 6e277cf Christian Tismer: added test to ensure that multiplication commutes. by Guido van Rossum · 25 years ago
- db1bd5c Revise tests to support str(<long int object>) not appending "L". by Fred Drake · 25 years ago
- 4581a0c New test_long.py from Tim Peters. by Guido van Rossum · 26 years ago
- 4365cab Add Tim Peters' test for long ints by Guido van Rossum · 26 years ago