summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_builtin.py
Commit message (Expand)AuthorAgeFilesLines
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-230/+230
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-141-3/+5
* Patch #1601678: move intern() to sys.intern().Georg Brandl2006-12-191-24/+0
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-2/+15
* - patch #1600346 submitted by Tomer FilibaJack Diederich2006-11-281-1/+1
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-2/+25
* Make built-in zip() equal to itertools.izip().Guido van Rossum2006-08-241-8/+8
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-5/+15
* Kill reduce(). A coproduction of John Reese, Jacques Frechet, and Alex M.Guido van Rossum2006-08-221-26/+0
* Get rid of most of the rest of coerce (slot is still there for now).Neal Norwitz2006-08-211-11/+0
* Get rid of dict.has_key(). Boy this has a lot of repercussions!Guido van Rossum2006-08-181-5/+5
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-3/+27
* Merge the rest of the trunk.Thomas Wouters2006-06-081-1/+1
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-24/+165
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-0/+4
* Remove apply()Neal Norwitz2006-03-171-26/+0
* Whoops, input *and* raw_input are slated for removal, and now both are gone.Neal Norwitz2006-03-171-31/+0
* raw_input() -> input(). old input behavior is history (and test_builtin pass...Neal Norwitz2006-03-171-22/+9
* 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
* test_range(): The C code changed to raise TypeError in one of theseTim Peters2003-04-151-1/+1