summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Fix a bunch of problems from merges.Neal Norwitz2008-03-181-30/+11
* Added test_print.py. I want to have a test suite when the print function is ...Eric Smith2008-03-181-0/+102
* Merged revisions 61431,61433-61436,61439,61444,61449-61450,61453,61458,61465,...Christian Heimes2008-03-1833-962/+980
* block r61491Christian Heimes2008-03-180-0/+0
* In TextIOWrapper:Ka-Ping Yee2008-03-182-69/+115
* Make TextIOWrapper's seek/tell work properly with stateful decoders;Ka-Ping Yee2008-03-183-111/+369
* Blocked revisions 61492 via svnmergeGuido van Rossum2008-03-180-0/+0
* Blocked revisions 61489 via svnmergeGuido van Rossum2008-03-180-0/+0
* Blocked revisions 61486 via svnmergeGuido van Rossum2008-03-180-0/+0
* Blocked revisions 61478 via svnmergeGuido van Rossum2008-03-180-0/+0
* Blocked revisions 61475 via svnmergeGuido van Rossum2008-03-180-0/+0
* - A new pickle protocol (protocol 3) is added with explicit supportGuido van Rossum2008-03-176-55/+165
* Whoops, I missed a few more places that were using slicing from the operator ...Neal Norwitz2008-03-173-39/+2
* mention the zlib crc32/adler32 changesGregory P. Smith2008-03-171-0/+2
* Bug #2301: Don't try decoding the source code into the originalMartin v. Löwis2008-03-174-74/+18
* Patch from jbalogh fixes issue #2282 (misnamed seekable() method).Ka-Ping Yee2008-03-174-1/+10
* Document the expected convention for getstate() (as explained to me by Guido).Ka-Ping Yee2008-03-171-1/+3
* zlib.crc32 and zlib.adler32 now return an unsigned value as any sane personGregory P. Smith2008-03-173-2/+14
* use PyBUF_LOCK instead of PyBUF_SIMPLE for bsddb data access as it'll oftenGregory P. Smith2008-03-171-4/+3
* Added tests for tokenize, blocked corresponding checkin from trunk.Eric Smith2008-03-171-2/+10
* Renamed test_hexoct.py to test_int_literal.py, to match r61422 in the trunk.Eric Smith2008-03-172-116/+147
* Add missing parameter spotted by Jared FlatowNeal Norwitz2008-03-171-1/+1
* Remove __{get,set,del}slice__ dingleberries.Neal Norwitz2008-03-171-47/+0
* Blocked r61442, which is a backport of PEP 3127 features already in py3k.Eric Smith2008-03-170-0/+0
* Remove the "unsafe" flag on peek() -- it is no longer used, becauseKa-Ping Yee2008-03-171-13/+8
* Block r61438 from forward porting sinc it's a classic-classes fix.Jeffrey Yasskin2008-03-170-0/+0
* Clean up svnmerge propertiesChristian Heimes2008-03-160-0/+0
* Merged revisions 61413-61414 via svnmerge fromChristian Heimes2008-03-162-29/+7
* Fix doctests in test_tokenize by converting Python 2.x syntaxMark Dickinson2008-03-161-49/+49
* Fix datetime_strptime following svnmerge from trunk; it wasMark Dickinson2008-03-161-1/+1
* Fix failing test test_bool following merge from trunk.Mark Dickinson2008-03-161-1/+1
* Merged revisions 61404-61407 via svnmerge fromChristian Heimes2008-03-165-64/+17
* Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,...Christian Heimes2008-03-16104-1775/+2528
* Fix an apparent typo. This test of the readonly boolean should have been != 0Gregory P. Smith2008-03-151-1/+1
* Fix crasher in unpacking assignments with star, where the size constraintsThomas Wouters2008-03-142-0/+27
* #2285: remove cmp keyword from list.sort docstring.Georg Brandl2008-03-141-1/+1
* In Py3.0, the recipes can use keyword-only arguments instead of using the **k...Raymond Hettinger2008-03-131-6/+4
* Sync-up with doc improvements in Py2.6Raymond Hettinger2008-03-132-72/+63
* Move itertools izip() code to builtins as zip(). Complete the renaming.Raymond Hettinger2008-03-1311-476/+281
* The texcheck script is not needed with reST documentation.Raymond Hettinger2008-03-131-233/+0
* Rename ifilterfalse() to filterfalse() and izip_longest() to zip_longest().Raymond Hettinger2008-03-134-93/+93
* Issues 2186 and 2187. Move map() from itertools to builtins.Raymond Hettinger2008-03-138-203/+158
* Issue 2186 and 2187. Move filter from itertools to builtins.Raymond Hettinger2008-03-135-180/+138
* Merged revisions 61330 via svnmerge fromGeorg Brandl2008-03-121-3/+4
* Also set LC_CTYPE, to allow localeconv string conversion.Martin v. Löwis2008-03-101-3/+7
* strxfrm and strcoll are conditionally defined, alwsy provide some implNeal Norwitz2008-03-101-11/+17
* Fix another buffer overflow.Martin v. Löwis2008-03-081-1/+1
* Skip tests if the file mapping file cannot be fetched.Martin v. Löwis2008-03-081-1/+4
* Default to ASCII as the locale.getpreferredencoding, if the POSIXMartin v. Löwis2008-03-082-1/+12
* Fix typo in assertion.Martin v. Löwis2008-03-081-1/+1