summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Another instance of the same typo.Steve Purcell2003-10-261-2/+2
* Replace the window() example with pairwise() which demonstrates tee().Raymond Hettinger2003-10-262-23/+14
* Minor improvements to itertools.tee():Raymond Hettinger2003-10-262-9/+21
* Incorporated patch 819077, from George Yoshida:Steve Purcell2003-10-261-7/+6
* regressing the performance bugfix -- Guido wants the performance bug leftAlex Martelli2003-10-252-4/+1
* oh dear. Wrong manipulation. Committed a version of ceval.c from myArmin Rigo2003-10-251-28/+20
* Made function declaration a proper C prototypeArmin Rigo2003-10-252-21/+29
* SF #829941, update tutorial, built-in types can be base classes since 2.2Neal Norwitz2003-10-251-2/+2
* document the performance fix to builtin_sum().Alex Martelli2003-10-251-0/+6
* Changed builtin_sum to use PyNumber_InPlaceAdd (same semantics, but fixesAlex Martelli2003-10-251-1/+1
* Use PyArg_UnpackTuple() where possible.Raymond Hettinger2003-10-251-1/+1
* Improvements to coding for itertools.tee():Raymond Hettinger2003-10-251-3/+26
* Patch #812378: Normalize white space.Martin v. Löwis2003-10-2410-209/+208
* Patch #828384: Don't discard nested exception in AddObject.Martin v. Löwis2003-10-241-2/+3
* [Patch #772077 from Tim Rice] Fix for compiling the readline module on UnixWa...Andrew M. Kuchling2003-10-241-3/+3
* [Bug #822668] tarfile raises an exception if the tarfile is gzipped and is to...Andrew M. Kuchling2003-10-241-1/+1
* Fixed bug introduced in revision 1.27Armin Rigo2003-10-241-1/+1
* Fix a bug in the memory reallocation code of PyUnicode_TranslateCharmap().Walter Dörwald2003-10-242-19/+32
* Added itertools.tee()Raymond Hettinger2003-10-244-93/+446
* - The pwd module incorrectly advertised its struct type asGuido van Rossum2003-10-232-0/+6
* Record an item I missed and bump the version number. [2.3 bugfix candidate.]Andrew M. Kuchling2003-10-231-1/+6
* Patch #813200: Quote executable path on Windows. Fixes #811082.Martin v. Löwis2003-10-231-2/+10
* - add "Why is Python installed on my computer?" as a documentation FAQFred Drake2003-10-231-3/+15
* Remove unneeded import.Guido van Rossum2003-10-221-1/+0
* Replace a reduce() with sum().Raymond Hettinger2003-10-221-3/+2
* Add docstringAndrew M. Kuchling2003-10-221-0/+4
* [Part of patch #648322] Delete the poll2() function, which uses a 'poll' exte...Andrew M. Kuchling2003-10-221-29/+4
* [Bug #809174] loads() and dumps() not documentedAndrew M. Kuchling2003-10-221-0/+24
* [Bug #758241] When you use asyncore with a non-default map, methodsAndrew M. Kuchling2003-10-221-2/+7
* Avoid confusing name for the 3rd argument to str.replace().Fred Drake2003-10-222-6/+6
* Don't make promises about about the visibility of the induction variable.Raymond Hettinger2003-10-211-12/+0
* Removing bogus Py_DECREF() reported by Armin Rigo (SF bug 812353).Jeremy Hylton2003-10-211-1/+0
* Fix indentation.Jeremy Hylton2003-10-211-1/+1
* Apply patch 823328 -- support for rfc 2617 digestion authentication.Jeremy Hylton2003-10-211-44/+96
* - make this section formatFred Drake2003-10-211-100/+98
* add missing dependencyFred Drake2003-10-211-0/+1
* markup fixes; this would not formatFred Drake2003-10-211-2/+2
* ConfigParser.items() and SafeConfigParser.items() no longer return aFred Drake2003-10-211-3/+3
* Make both items() methods return lists; one had changed to return anFred Drake2003-10-211-5/+4
* Note the update to Expat 1.95.7.Fred Drake2003-10-211-0/+2
* Provide a bit more information to the compiler when building Expat.Fred Drake2003-10-211-11/+16
* Update to Expat 1.95.7; there are no changes to the Expat sources.Fred Drake2003-10-2113-1045/+604
* Add some more itemsAndrew M. Kuchling2003-10-211-3/+28
* Document list.sort() changesAndrew M. Kuchling2003-10-211-1/+37
* Show microseconds, milliseconds or seconds, whichever is most natural,Guido van Rossum2003-10-201-1/+9
* Use 'predicate = bool' as the default predicate for ifilter[false].Guido van Rossum2003-10-201-4/+2
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-2043-47/+47
* Modify the Py_RETURN_* macros to be of the form ``do {...} while (0)`` in orderBrett Cannon2003-10-192-3/+3
* Modified the Py_RETURN_* macros by having the statements surrounded by {} inBrett Cannon2003-10-193-3/+6
* Defined macros Py_RETURN_(TRUE|FALSE|NONE) as helper functions for returningBrett Cannon2003-10-192-0/+7