summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'r234'.v2.3.4cvs2svn2004-05-271-0/+1
|
* formatting nitAnthony Baxter2004-05-271-8/+8
|
* reset releaseAnthony Baxter2004-05-271-1/+1
|
* Changes for Python 2.3.4.Thomas Heller2004-05-251-4/+4
|
* This file no longer compressed with upx.Thomas Heller2004-05-251-0/+0
|
* Set release date for Python 2.3.4 (final).Thomas Heller2004-05-254-4/+6
| | | | Windows build number is 53.
* Set release date for Python 2.3.4 (final).Thomas Heller2004-05-251-1/+6
|
* To avoid licensing issues, the stub exe for the bdist_wininstThomas Heller2004-05-251-5/+0
| | | | | installer is no longer compressed with upx. This adds about 35 kB to any installer.
* reverse the order of the two \date lines so the processing tools pickFred Drake2004-05-191-1/+1
| | | | up on the right one
* repair dateFred Drake2004-05-191-1/+1
|
* update version number for 2.3.4 finalFred Drake2004-05-191-3/+3
|
* Remove the offending added bit of a test case that doesn't apply toGregory P. Smith2004-05-151-5/+0
| | | | | | | the python 2.3.x branch as the bsddb.set_get_returns_none() default behaviour is different than on 2.4 and leter. (yes a correct test case for this branch could be written; removing this bad test gets things not-failing fastest)
* Current version is 2.3.4.Thomas Heller2004-05-141-1/+1
|
* update for the predicted 2.3.4 final release date,Fred Drake2004-05-141-1/+1
| | | | getting the year right this time
* Added a sample message for the test for SF bug # 846938. I'm naming thisBarry Warsaw2004-05-131-0/+10
| | | | | msg_40.txt because msg_3[6-9].txt are already used in email3/py2.4 and I'm going to forward port this test.
* test_boundary_in_non_multipart(): Added a test for SF bug # 846938.Barry Warsaw2004-05-131-0/+15
|
* _parsebody(): Do not create subparts unless the container has a main type ofBarry Warsaw2004-05-131-7/+8
| | | | | | | | 'multipart' and the boundary is defined. This fixes SF bug # 846938, and several recent email-sig bugs where something like a text/html message also had a boundary parameter. This would later crash the Generator, which only consulted the Content-Type to decide how to generate the message (and it would expect just a string, but find a list there instead).
* Waugh! we need to bump the email package to 2.5.5 for Python 2.3.4.Barry Warsaw2004-05-131-3/+3
|
* better yetAnthony Baxter2004-05-131-1/+1
|
* how many @*&(*$# places do we include the years??Anthony Baxter2004-05-131-1/+1
|
* This commit was manufactured by cvs2svn to create tag 'r234c1'.v2.3.4c1cvs2svn2004-05-131-0/+1
|
* update to match Lib/idlelib/NEWS version numberAnthony Baxter2004-05-131-1/+1
|
* SF #847346: remove misguided optimization for short input fromGreg Ward2004-05-131-10/+8
| | | | | wrap() method. Premature optimization is indeed the root of all evil. Whitespace fix.
* SF #847346: add test_fix_sentence_endings() to ensure that sentenceGreg Ward2004-05-131-4/+42
| | | | | | | | | | endings get fixed even if the input is too short to wrap. Also throw in a bunch of other tests for this rather tricky and under-tested feature. In WrapTestCase.setUp(), don't bother setting fix_sentence_endings=True for self.wrapper -- just use a separate wrapper in the two tests that care about it, namely test_whitespace() and test_fix_sentence_endings().
* Version '2.3.4c1'Thomas Heller2004-05-121-7/+35
| | | | | | | File name 'Python-2.3.4c1.exe' Change company to 'Python Software Foundation' Add year 2004 to the copyright. Include tix into the distribution.
* Windows build number for 2.3.4c1 is 52.Thomas Heller2004-05-122-2/+4
|
* Fix version number (2.3.4c1) and release date (12-May-2004).Thomas Heller2004-05-124-6/+6
|
* 2.3.4 is derived from 2.3.3, not from itself.Thomas Heller2004-05-121-1/+1
|
* set target date for Python 2.3.4 releaseFred Drake2004-05-121-1/+2
|
* fix various descriptions of "ctime"Fred Drake2004-05-123-3/+7
| | | | (closes SF patch #870287)
* backport 1.17, 1.18 from the trunk: PyErr_SetInterrupt not ObsoleteFred Drake2004-05-121-1/+3
| | | | (closes SF patch #919299)
* fix various typos; thanks, George Yoshida!Fred Drake2004-05-126-6/+6
| | | | (closes SF patch #952047)
* add note about the __name__ read-only attributeFred Drake2004-05-121-1/+6
| | | | (closes SF bug #952212)
* Update copyright years. In the Windows resource, change the name of theTim Peters2004-05-112-3/+4
| | | | | company to the PSF (Zope Corp and PythonLabs no longer have anything to do with this!).
* super_getattro(): Repaired compiler warning about mixed-type comparison.Tim Peters2004-05-111-1/+2
|
* update the version information in preparation for releaseFred Drake2004-05-111-4/+4
| | | | (the documentation tools use this)
* Fix SF item #876278: Unbounded recursion in modulefinder.Thomas Heller2004-05-112-0/+6
|
* use tools/getversioninfo to extract the version number from the PythonFred Drake2004-05-111-11/+4
| | | | sources
* remove assignment to unused variableFred Drake2004-05-111-1/+0
|
* update to reflect the current location of the SF bugs search boxFred Drake2004-05-111-1/+1
|
* markup adjustmentFred Drake2004-05-111-3/+5
|
* In order to fix SF bug # 824977, we replace calloc()/free() calls inBarry Warsaw2004-05-111-9/+16
| | | | | | | binascii_a2b_qp() and binascii_b2a_qp() with calls to PyMem_Malloc() and PyMem_Free(). These won't return NULL unless the allocations actually fail, so it won't trigger a bogus memory error on some platforms <cough>AIX</cough> when passed a length of zero.
* SF #832236: wrap a bunch of _EXPORT_INT calls in #ifdef's, toGreg Ward2004-05-111-0/+18
| | | | avoid breaking the build on MkLinux (Linux 2.0).
* Added a note describing how fp should be opened in binary mode, especially onBarry Warsaw2004-05-101-0/+4
| | | | Windows. Closes SF # 586899.
* don't make assumptions about $PATH in Cygwin instructionsFred Drake2004-05-101-1/+1
|
* Fix [ 738973 ] urllib2 CacheFTPHandler doesn't work on multiple dirs, asMark Hammond2004-05-101-1/+1
| | | | implemented in patch [ 851736 ].
* test_mime_attachments_in_constructor(): New test to check for SF bug # 884030.Barry Warsaw2004-05-091-0/+9
|
* SF patch # 884030 by Amit Aronovitch; fixes the _subpart argument to matchBarry Warsaw2004-05-091-5/+7
| | | | documented semantics.
* Add this year to the copyright notices, and label it 2.3.4.Barry Warsaw2004-05-091-2/+2
|
* Mention changes to platform.py.Guido van Rossum2004-05-081-0/+3
|