- 708a5ea Issue #20546: Use specific asserts in int tests. by Serhiy Storchaka · 11 years ago
- 6f70fe8 Issue #16790: add some of the recent issue #16045 int tests to test_long. by Chris Jerdonek · 12 years ago
- 2623a37 Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
- cb61e5d Issue #9869: Make long() and PyNumber_Long return something of type by Mark Dickinson · 14 years ago
- 784a47f Issue #8825: additional testcases for int(string, 0) and long(string, 0). by Mark Dickinson · 14 years ago
- 2066559 Issue #8816: Extra tests for some built-in functions. These tests are by Mark Dickinson · 14 years ago
- 0762788 #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k_warnings() helper. by Florent Xicluna · 15 years ago
- a4f46e1 Remove unused imports in test modules. by Georg Brandl · 15 years ago
- df8a303 Fix a few UnboundLocalErrors in test_long. by Georg Brandl · 15 years ago
- b0f5adc use assert[Not]IsInstance where appropriate by Ezio Melotti · 15 years ago
- ce8e33a Reverting the Revision: 77368. I committed Flox's big patch for tests by by Senthil Kumaran · 15 years ago
- 3ddc435 Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox by Senthil Kumaran · 15 years ago
- 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 15 years ago
- a7e734f Nit: integer division should use //, not / by Mark Dickinson · 16 years ago
- 6736cf8 Issue #3166: Make long -> float (and int -> float) conversions by Mark Dickinson · 16 years ago
- efc82f7 Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. by Mark Dickinson · 16 years ago
- 1a70798 Issue #3439: add bit_length method to int and long. by Mark Dickinson · 16 years ago
- d3ffb89 #3777: long(4.2) returned an int, and broke backward compatibility. by Amaury Forgeot d'Arc · 16 years ago
- b646757 Issue #1481296: (again!) Make conversion of a float NaN to an int or by Mark Dickinson · 16 years ago
- 979395b Moved testing of builtin types out of test_builtin and into type specific modules by Benjamin Peterson · 17 years ago
- 9871d8f Continue rolling back pep-3141 changes that changed behavior from 2.5. This by Jeffrey Yasskin · 17 years ago
- 8267d1d Bug #1481296: Fixed long(float('nan'))!=0L. by Christian Heimes · 17 years ago
- 2f3c16b Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just by Jeffrey Yasskin · 17 years ago
- 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 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