summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_builtin.py
Commit message (Expand)AuthorAgeFilesLines
* Patch #1444529: the builtin compile() now accepts keyword arguments.Georg Brandl2007-03-131-0/+9
* Backport from Py3k branch:Georg Brandl2007-03-121-4/+59
* Patch #1638879: don't accept strings with embedded NUL bytes in long().Georg Brandl2007-03-061-0/+5
* Bug #1545497: when given an explicit base, int() did ignore NULsGeorg Brandl2006-10-121-0/+5
* Forward-port of r52136,52138: a review of overflow-detecting code.Armin Rigo2006-10-041-2/+9
* Fix integer negation and absolute value to not relyMartin v. Löwis2006-10-041-0/+1
* Fix and test for an infinite C recursion.Armin Rigo2006-08-091-0/+4
* __hash__ may now return long int; the final hashMartin v. Löwis2006-08-091-0/+9
* Whitespace normalization.Tim Peters2006-08-091-1/+1
* Don't produce output in test_builtin.Georg Brandl2006-08-061-2/+2
* Bug #1535165: fixed a segfault in input() and raw_input() whenGeorg Brandl2006-08-061-0/+8
* Bug #1417699: Reject locale-specific decimal point in float()Martin v. Löwis2006-07-031-3/+14
* Normalized a few cases of whitespace in function declarations.Martin Blais2006-06-061-1/+1
* Heavily fiddled variant of patch #1442927: PyLong_FromString optimization.Tim Peters2006-05-241-0/+75
* Bug #1334662 / patch #1335972: int(string, base) wrong answers.Tim Peters2006-05-231-0/+78
* Bug #1473625: stop cPickle making float dumps locale dependent in protocol 0.Georg Brandl2006-04-301-24/+12
* Fix __import__("") to raise ValueError rather than return None.Thomas Wouters2006-04-041-0/+1
* Patch #1460496: round() now accepts keyword arguments.Georg Brandl2006-03-311-0/+3
* Part of bug 1459808: fiddle test_input_and_raw_input()Tim Peters2006-03-281-2/+10
* Correct test_builtin locale handling.Georg Brandl2006-01-091-1/+1
* Get float() to be more portable across platforms. Disable hex strings.Neal Norwitz2005-12-181-2/+4
* Test another error case in PyFloat_FromString().Walter Dörwald2005-11-291-0/+2
* Improve test coverage. Hope the test_file changes work the same on windows.Neal Norwitz2005-11-271-0/+13
* improve test coverage in Python/pystrtod.c and Python/mystrtoul.c.Neal Norwitz2005-11-221-0/+29
* Disable a few other tests, that can't work if Python is compiled withoutWalter Dörwald2005-08-031-5/+14
* Make subclasses of int, long, complex, float, and unicode perform typeBrett Cannon2005-04-261-0/+97
* Add two new functions, any() and all().Raymond Hettinger2005-03-111-0/+36
* Use decorators.Guido van Rossum2005-01-161-3/+4
* Whitespace normalization.Tim Peters2004-12-071-13/+13
* SF patch #1077353: add key= argument to min and maxRaymond Hettinger2004-12-031-4/+75
* Improve test coverage.Raymond Hettinger2004-09-301-0/+3
* Checkin Tim's fix to an error discussed on python-dev.Raymond Hettinger2004-09-261-0/+5
* Subclasses of string can no longer be interned. The semantics ofJeremy Hylton2004-08-071-0/+17
* SF bug #1004669: Type returned from .keys() is not checkedRaymond Hettinger2004-08-071-0/+9
* Completed the patch for Bug #215126.Raymond Hettinger2004-08-021-0/+25
* * Fix missing return after error message is set.Raymond Hettinger2004-07-061-0/+1
* SF Bug #215126: Over restricted type checking on eval() functionRaymond Hettinger2004-07-021-1/+55
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-2/+2
* Fix input() builtin function to respect compiler flags.Hye-Shik Chang2004-02-021-0/+13
* Guido grants a Christmas wish:Raymond Hettinger2003-12-171-2/+35
* - Removed FutureWarnings related to hex/oct literals and conversionsGuido van Rossum2003-11-291-3/+2
* * Migrate set() and frozenset() from the sandbox.Raymond Hettinger2003-11-161-3/+2
* Deleting cyclic object comparison.Armin Rigo2003-10-281-6/+6
* Make a copy of L before appending, so the global L remainsWalter Dörwald2003-08-151-4/+4
* As discussed on python-dev, changed builtin.zip() to handle zero argumentsRaymond Hettinger2003-08-021-1/+2
* Port test_complex.py to unittest.Walter Dörwald2003-06-181-56/+0
* Used sets.Set() to compare unordered sequences.Raymond Hettinger2003-05-021-11/+3
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-3/+1
* Adding new built-in function sum, with docs and tests.Alex Martelli2003-04-221-0/+21
* Add a few errors tests for range().Walter Dörwald2003-04-151-0/+6