summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_builtin.py
Commit message (Expand)AuthorAgeFilesLines
* #3946 fix PyObject_CheckBuffer on a memoryview objectBenjamin Peterson2008-09-261-0/+1
* Merged revisions 65339-65340,65342 via svnmerge fromAmaury Forgeot d'Arc2008-08-011-0/+1
* Revert 64451.Raymond Hettinger2008-06-241-27/+0
* Merge 64438: hex/oct/bin can show floats exactly.Raymond Hettinger2008-06-221-0/+27
* #2630: Implement PEP 3138.Georg Brandl2008-06-111-0/+14
* Revert r63934 -- it was mixing two patches.Georg Brandl2008-06-041-3/+0
* Remove meaning of -ttt, but still accept -t option on cmdline for compatibility.Georg Brandl2008-06-041-0/+3
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-2/+2
* Merged revisions 63119-63128,63130-63131,63133,63135-63144,63146-63148,63151-...Alexandre Vassalotti2008-05-161-0/+10
* Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,...Christian Heimes2008-05-041-659/+0
* Issue2221: in Idle, exec('xx') raised a SystemError('error return without exc...Amaury Forgeot d'Arc2008-04-041-0/+11
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-231-0/+9
* Fixes for shared 2.6 code that implements PEP 3101, advanced stringEric Smith2008-02-171-18/+61
* Move UserList to collections.Raymond Hettinger2008-02-121-2/+2
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-111-2/+2
* Migrate remaining tests from UserDict.UserDict to collections.UserDict.Raymond Hettinger2008-02-061-2/+2
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-041-1/+51
* Merged revisions 60481,60485,60489-60520,60523-60527,60530-60533,60535-60538,...Christian Heimes2008-02-031-0/+14
* Merged revisions 60475-60479,60481-60488 via svnmerge fromChristian Heimes2008-02-011-31/+0
* Issue #1771: Remove cmp parameter from list.sort() and builtin.sorted().Raymond Hettinger2008-01-301-3/+0
* Merged revisions 60364-60378 via svnmerge fromChristian Heimes2008-01-271-1/+20
* Replace map(None, *iterables) with zip(*iterables).Raymond Hettinger2008-01-221-21/+0
* Merged revisions 60080-60089,60091-60093 via svnmerge fromGeorg Brandl2008-01-191-0/+5
* Fix Issue #1769: Now int('- 1') or int('+ 1') is not allowedFacundo Batista2008-01-191-3/+35
* Added the test cases I actually meant to add.Eric Smith2008-01-111-0/+5
* Simplifed argument parsing in object.__format__, added test case.Eric Smith2008-01-111-0/+4
* Removed PyInt_GetMax and sys.maxintChristian Heimes2007-12-041-19/+19
* Problem found while converting from PyBytes to PyString:Amaury Forgeot d'Arc2007-11-221-4/+5
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-2/+1
* Patch #1303: Adapt str8 constructor to bytes (now buffer) one.Georg Brandl2007-10-241-1/+2
* Check in some documentation tweaks for PEP 3141, add some tests, and implementJeffrey Yasskin2007-09-071-1/+3
* Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking...Eric Smith2007-09-011-2/+10
* Added test cases for string.Formatter subclassing.Eric Smith2007-08-311-8/+15
* Added format tests.Eric Smith2007-08-301-0/+1
* Additional test for formatting code.Eric Smith2007-08-271-1/+2
* Implementation of PEP 3101, Advanced String Formatting.Eric Smith2007-08-251-0/+26
* Finish the work on __round__ and __trunc__.Guido van Rossum2007-08-231-0/+42
* Implement the round functionality for PEP 3141, and add tests for it.Alex Martelli2007-08-221-0/+13
* Implement the trunc builtin for PEP 3141Alex Martelli2007-08-221-0/+14
* Bug #1772489: make dir() work on traceback objects again.Collin Winter2007-08-141-0/+7
* Kill execfile(), use exec() insteadNeal Norwitz2007-08-121-55/+0
* SF patch# 1770008 by Christian Heimes (plus some extras).Guido van Rossum2007-08-091-4/+4
* Make chr() and ord() return/accept surrogate pairs in narrow builds.Guido van Rossum2007-07-151-8/+27
* Merged revisions 56125-56153 via svnmerge fromGuido van Rossum2007-07-031-85/+34
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-5/+24
* Merged revisions 55631-55794 via svnmerge fromGuido van Rossum2007-06-061-8/+0
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-6/+7
* Remove have_unicode checks and merge those tests into theWalter Dörwald2007-05-221-120/+26
* It's ok for __hex__ or __oct__ to return unicode.Guido van Rossum2007-05-151-2/+1
* Given that ord() of a bytes object of length 1 is defined, it shouldGuido van Rossum2007-05-081-0/+9