summaryrefslogtreecommitdiff
path: root/Lib/test/test_long.py
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-3/+3
* Issue #9869: Make long() and PyNumber_Long return something of typeMark Dickinson2010-09-261-0/+16
* Issue #8825: additional testcases for int(string, 0) and long(string, 0).Mark Dickinson2010-05-261-0/+17
* Issue #8816: Extra tests for some built-in functions. These tests areMark Dickinson2010-05-251-0/+3
* #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k...Florent Xicluna2010-03-211-7/+9
* Remove unused imports in test modules.Georg Brandl2010-02-071-7/+0
* Fix a few UnboundLocalErrors in test_long.Georg Brandl2010-02-061-4/+3
* use assert[Not]IsInstance where appropriateEzio Melotti2010-01-241-2/+2
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-11/+7
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...Senthil Kumaran2010-01-081-7/+11
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-9/+9
* Nit: integer division should use //, not /Mark Dickinson2009-04-201-1/+1
* Issue #3166: Make long -> float (and int -> float) conversionsMark Dickinson2009-04-201-0/+59
* Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms.Mark Dickinson2009-03-201-1/+30
* Issue #3439: add bit_length method to int and long.Mark Dickinson2008-12-171-0/+37
* #3777: long(4.2) returned an int, and broke backward compatibility.Amaury Forgeot d'Arc2008-09-091-0/+4
* Issue #1481296: (again!) Make conversion of a float NaN to an int orMark Dickinson2008-08-041-1/+2
* Moved testing of builtin types out of test_builtin and into type specific mod...Benjamin Peterson2008-05-031-2/+249
* Continue rolling back pep-3141 changes that changed behavior from 2.5. ThisJeffrey Yasskin2008-01-051-3/+1
* Bug #1481296: Fixed long(float('nan'))!=0L.Christian Heimes2008-01-041-0/+4
* Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (justJeffrey Yasskin2008-01-031-1/+3
* Forward-port of r52136,52138: a review of overflow-detecting code.Armin Rigo2006-10-041-3/+20
* 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
* SF bug [#454456] int overflow code needs tests.Tim Peters2001-08-231-0/+61
* Remove test_long's expected-output file.Tim Peters2001-08-231-4/+8
* This patch removes all uses of "assert" in the regression test suiteMarc-André Lemburg2001-01-171-4/+4
* Make reindent.py happy (convert everything to 4-space indents!).Fred Drake2000-10-231-1/+0
* Christian Tismer: added test to ensure that multiplication commutes.Guido van Rossum2000-04-101-0/+2
* Revise tests to support str(<long int object>) not appending "L".Fred Drake1999-12-231-2/+8
* New test_long.py from Tim Peters.Guido van Rossum1998-10-021-11/+124
* Add Tim Peters' test for long intsGuido van Rossum1998-08-131-0/+139