summaryrefslogtreecommitdiff
path: root/Lib/test/test_builtin.py
Commit message (Expand)AuthorAgeFilesLines
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-7/+7
* Issue #8816: Extra tests for some built-in functions. These tests areMark Dickinson2010-05-251-14/+69
* Issue #1533: test_range in test_builtin: fix test comment and add testMark Dickinson2010-05-051-2/+2
* Issue #1533: fix inconsistency in range function argument processing:Mark Dickinson2010-05-041-0/+50
* Issue 7994: Make object.__format__ with a non-empty format string a PendingDe...Eric Smith2010-04-021-0/+36
* #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k...Florent Xicluna2010-03-211-9/+14
* Remove unused imports in test modules.Georg Brandl2010-02-071-3/+3
* use assert[Not]In where appropriateEzio Melotti2010-01-231-14/+14
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-20/+7
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...Senthil Kumaran2010-01-081-7/+20
* Issue #7251: Break out round tests for large values into a separateMark Dickinson2009-11-091-3/+22
* Make sure every run of test_intern() interns a new string, otherwise that tes...Georg Brandl2009-10-271-1/+4
* Protect against attempts to replace PyNumber_Add with PyNumber_InPlaceAdd in ...Mark Dickinson2009-10-171-0/+4
* Issue #6540: Fixed crash for bytearray.translate() with invalid parameters.Georg Brandl2009-07-221-0/+5
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-42/+42
* Issue #1869: Fix a couple of minor round() issues.Mark Dickinson2009-04-181-0/+3
* Issue 2235: Py3k warnings are now emitted for classes that will no longer inh...Nick Coghlan2008-08-111-0/+1
* #3479: unichr(2**32) used to return u'\x00'.Amaury Forgeot d'Arc2008-07-311-0/+1
* Revert 64424, 64438, and 64439.Raymond Hettinger2008-06-241-27/+0
* Issue 3008: hex/oct/bin can show floats exactly.Raymond Hettinger2008-06-211-0/+27
* revert 63425 over Guido's Febuary message about this, that I missedBenjamin Peterson2008-05-171-4/+0
* add Py3k warnings to oct and hex. backport hex behavior (because it's not dif...Benjamin Peterson2008-05-171-0/+4
* #2196 hasattr now allows SystemExit and KeyboardInterrupt to propagateBenjamin Peterson2008-05-121-0/+10
* Moved testing of builtin types out of test_builtin and into type specific mod...Benjamin Peterson2008-05-031-692/+0
* #2719: backport next() from 3k.Georg Brandl2008-04-301-0/+27
* Finished backporting PEP 3127, Integer Literal Support and Syntax.Eric Smith2008-03-171-0/+45
* Tests for bin() builtin. These need to get merged into py3k, which has no te...Eric Smith2008-02-221-0/+9
* Moved test_format into the correct TestCase.Eric Smith2008-02-211-39/+39
* Backport of PEP 3101, Advanced String Formatting, from py3k.Eric Smith2008-02-171-0/+95
* Rename rational.Rational to fractions.Fraction, to avoid name clashMark Dickinson2008-02-101-2/+2
* Make int() and long() fall back to __trunc__(). See issue 2002.Jeffrey Yasskin2008-02-041-0/+102
* Test round-trip on float.as_integer_ratio() and float.__truediv__().Raymond Hettinger2008-02-011-0/+6
* Issue #1996: float.as_integer_ratio() should return fraction in lowest terms.Raymond Hettinger2008-02-011-0/+8
* Move __builtins__.trunc() to math.trunc() perJeffrey Yasskin2008-02-011-32/+0
* Moved Rational._binary_float_to_ratio() to float.as_integer_ratio() becauseJeffrey Yasskin2008-01-271-1/+20
* Fix #1679: "0x" was taken as a valid integer literal.Georg Brandl2008-01-191-0/+5
* Continue rolling back pep-3141 changes that changed behavior from 2.5. ThisJeffrey Yasskin2008-01-051-13/+11
* Patch #1725 by Mark Dickinson, fixes incorrect conversion of -1e1000Guido van Rossum2008-01-051-0/+6
* Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (justJeffrey Yasskin2008-01-031-1/+74
* 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