summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fill in various bits of the templateAndrew M. Kuchling2004-12-031-27/+5
|
* Remove PyRange_New().Raymond Hettinger2004-12-033-47/+2
|
* Acknowledge contribution of a thorough tutorial review.Raymond Hettinger2004-12-031-0/+1
|
* SF patch #1077353: add key= argument to min and maxRaymond Hettinger2004-12-035-45/+164
| | | | (First draft of patch contributed by Steven Bethard.)
* Fixed errors reported in SF bug #1074693Vinay Sajip2004-12-021-6/+23
|
* Restore Python 2.1 compatibility (os.extsep was introduced in Python 2.2).Marc-André Lemburg2004-12-021-2/+4
|
* Fixing bug #1072259 in SRE.Gustavo Niemeyer2004-12-021-7/+10
|
* Add key= argument to heapq.nsmallest() and heapq.nlargest().Raymond Hettinger2004-12-024-8/+90
|
* Update the MSC6 pythoncore projects to compile for Py2.5Raymond Hettinger2004-12-021-2/+2
|
* Fix typo.Raymond Hettinger2004-12-021-1/+1
|
* SF bug #1076955: Tutorial corrections Part IIRaymond Hettinger2004-12-022-34/+36
|
* SF bug #1076955: Tutorial corrections Part IRaymond Hettinger2004-12-021-54/+67
| | | | (Submitted by some anonymous person with an amazing eye for grammer nits.)
* Add all readme files in Tools.Martin v. Löwis2004-12-011-1/+2
|
* Recompiled binaries after source changes.Thomas Heller2004-12-012-0/+0
|
* printf format code for integers is %d not %s.Thomas Heller2004-12-011-1/+1
| | | | Will backport.
* Update the filenames in the MSVC project file for Python 2.5.Thomas Heller2004-12-011-9/+9
|
* Update import library name on windows.Thomas Heller2004-12-011-2/+2
|
* Make the example server code clearer; add the corresponding example client. ↵Andrew M. Kuchling2004-12-011-5/+36
| | | | [Bugfix candidate]
* Running the pre-install or post-install script did not work whenThomas Heller2004-12-011-3/+6
| | | | | | | | Python was installed with the 'only for me' option. The registry key had a hardcoded '2.3' in it where the python version chosen for installation should be used instead. Will backport myself.
* - fix up internal hyperlink generation in PDF formatting so that links atFred Drake2004-12-011-8/+17
| | | | | | | the beginning of a paragraph do not generate errors; this affected things like \refmodule when it came first in a paragraph - clean up the .sty file to separate out the treatment of the start of a new paragraph
* - bump version number for "What's New" documentFred Drake2004-12-011-2/+2
| | | | | - don't create .tgz version of doc source package, since we're not generating that for the other formats either
* Continue the post-release mechanics; we need a "What's New" documentFred Drake2004-12-011-0/+156
| | | | so the docs can be built.
* Fix nit.Raymond Hettinger2004-12-011-1/+1
|
* Mention getservbyport(). There's no patch number in the CVS log, so I ↵Andrew M. Kuchling2004-12-011-3/+4
| | | | assume Barry wrote the code.
* Bump version numberAndrew M. Kuchling2004-12-011-1/+1
|
* Remove mention of Template being a subclass of unicodeAndrew M. Kuchling2004-12-011-5/+3
|
* [Patch #1076365] Correction of name of Template class; add contributorAndrew M. Kuchling2004-12-011-2/+3
|
* Bump version number to 2.5.Martin v. Löwis2004-11-302-21/+32
| | | | Fix term.h check so that HAVE_TERM_H is actually generated.
* Raise TypeError if bufsize argument is not an integer. Patch 1071755, ↵Peter Astrand2004-11-302-0/+14
| | | | slightly modified.
* Corrected example for replacing shell pipeline. Fixes bug 1073790.Peter Astrand2004-11-302-2/+2
|
* Update release date.Andrew M. Kuchling2004-11-301-2/+2
|
* Hear the #error: change the default value of the mutable_arg argumentMichael W. Hudson2004-11-302-16/+4
| | | | to ioctl() and remove the warning when it is not supplied.
* post 2.4 release machinationsAnthony Baxter2004-11-301-3/+3
|
* whoops!Anthony Baxter2004-11-301-2/+2
|
* This commit was manufactured by cvs2svn to create tag 'r24'.v2.4cvs2svn2004-11-301-0/+1
|
* update gcc refAnthony Baxter2004-11-301-1/+1
|
* doodedoodedoo on the way to 2.4 finalAnthony Baxter2004-11-302-42/+6
|
* REVERT revision 1.260; the trunk is FROZEN.Fred Drake2004-11-291-1/+1
| | | | | This change can be made on the trunk and release24-maint branch after the trunk is unfrozen.
* Bump buildno for 2.4 releaseMartin v. Löwis2004-11-292-3/+5
|
* Fix a nit.Raymond Hettinger2004-11-291-1/+1
|
* Fix argument order in pure python version of nsmallest() and nlargest().Raymond Hettinger2004-11-292-4/+7
|
* RFC 2822 describes the characters allowed in a header field name. Conform toBarry Warsaw2004-11-292-1/+19
| | | | this, and add test cases.
* preparing for 2.4 final (wooooooo!)Anthony Baxter2004-11-293-5/+5
|
* There's likely nothing more to do to the email package before Python 2.4 isBarry Warsaw2004-11-291-1/+1
| | | | final, so I'm marking email's version number as "3.0" (e.g. final).
* Whitespace normalization.Tim Peters2004-11-281-6/+6
|
* Fix for SF bug #1072623. When the last line of the input string does not endBarry Warsaw2004-11-282-1/+16
| | | | | | | | | in a newline, and it's an end boundary, the FeedParser wasn't recognizing it as such. Tweak the regexp to make the ending linesep optional. For grins, clear self._partial when closing the BufferedSubFile. Added a test case.
* Fix typo in comment.Walter Dörwald2004-11-251-1/+1
|
* Fix typo.Raymond Hettinger2004-11-251-1/+1
|
* Clarify the ordering of dictionary keys.Raymond Hettinger2004-11-251-2/+4
|
* Make sure the money formatting recipe can doesn't run out of digitsRaymond Hettinger2004-11-251-8/+14
| | | | to the right of the decimal point.