aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* correct several markup errors caught by the GNU info conversionFred Drake2005-03-101-22/+25
|
* SF bug #1160187: Setup file needs entries for collections, itertools, stropRaymond Hettinger2005-03-091-0/+4
|
* backport v1.216: add support for another DB library naming convention ↵Andrew MacIntyre2005-03-091-1/+3
| | | | \n(FreeBSD ports) - patch #1146231
* pre-release magicAnthony Baxter2005-03-096-12/+18
|
* tabstop delenda estAnthony Baxter2005-03-091-3/+3
|
* backportSkip Montanaro2005-03-091-2/+0
|
* backport from headSkip Montanaro2005-03-091-4/+4
|
* SF #818006: revert addition of 'closed', 'mode', and 'name' attributesGreg Ward2005-03-093-84/+27
| | | | to oss_audio_device objects.
* Build with --disable-unicode again. Fixes #1158607.Martin v. Löwis2005-03-086-12/+39
|
* SF #1156412: document the __new__() static method.Greg Ward2005-03-081-0/+29
|
* SF #818006: add useful read-only attributes to oss_audio_device object:Greg Ward2005-03-074-35/+101
| | | | | 'closed', 'name', and 'mode' (as recommended by http://python.org/doc/current/lib/bltin-file-objects.html).
* Ensure that warnings.filters is properly restored after fiddling with itGreg Ward2005-03-071-7/+10
| | | | (this was breaking test_warnings).
* Mention SF #1149508 (textwrap and hyphenated numbers).Greg Ward2005-03-051-0/+4
|
* SF #1149508: ensure textwrap handles hyphenated numbers correctly,Greg Ward2005-03-052-3/+22
| | | | eg. "2004-03-04" is not broken across lines.
* Patches #925152, #1118602: Avoid reading after the end of the bufferMartin v. Löwis2005-03-042-1/+4
| | | | in pyexpat.GetInputContext.
* Patch #1075887: Don't require MSVC in distutils if there is nothingMartin v. Löwis2005-03-042-0/+9
| | | | to build. Will backport to 2.4
* Convert "__init__ should return None" from an exception to a warning.Raymond Hettinger2005-03-042-5/+12
|
* Patch #1103407: Properly deal with tarfile iterators when untarringMartin v. Löwis2005-03-032-4/+18
| | | | symbolic links on Windows. Fixes #1100429.
* Patch #1107221: Updated "Working on Cygwin" section.Martin v. Löwis2005-03-031-17/+28
|
* Corrected bug in list2cmdline wrt backslashes. Fixes #1083306.Peter Astrand2005-03-031-0/+1
|
* Only run extensive subprocess tests if -usubprocess to regrtest is ↵Peter Astrand2005-03-032-4/+7
| | | | specified. Fixes #1124637
* minor edits:Fred Drake2005-03-031-3/+4
| | | | | | - function names marked with \function should include parentheses - "standard error" instead of "stderr" for text - a boolean parameter takes true or false values, not just True or False
* SF bug #1155938: Missing None check for __init__().Raymond Hettinger2005-03-033-0/+22
|
* Revert previous checkin on getargs 'L' code. Try to convert allMartin v. Löwis2005-03-034-25/+27
| | | | numbers in PyLong_AsLongLong, and update test suite accordingly.
* Patch #1117454: Remove code to special-case cookies without valuesMartin v. Löwis2005-03-035-12/+26
| | | | in LWPCookieJar.
* Patch #1117339: Add cookielib special name tests.Martin v. Löwis2005-03-033-5/+30
|
* Document quiet parameter to decode. Fixes #803413.Martin v. Löwis2005-03-031-1/+5
|
* Patch #1112812: Make bsddb/__init__.py more friendly for modulefinder.Martin v. Löwis2005-03-032-2/+4
|
* Clear internal call error in 'L' format. Fixes #723201.Martin v. Löwis2005-03-033-1/+16
|
* Backport the non-spwd part of the change on head.Skip Montanaro2005-03-021-2/+3
|
* Patch #1121234: Properly cleanup _exit and tkerror commands.Martin v. Löwis2005-03-012-0/+9
|
* Patch #1093585: raise a ValueError for negative history items inMartin v. Löwis2005-02-272-1/+17
| | | | remove_history and replace_history.
* Document missing opcodes.Raymond Hettinger2005-02-211-0/+8
|
* Use getdoc(object) instead of object.__doc__ to fix indentation problems.Ka-Ping Yee2005-02-191-2/+10
| | | | | | | | | | | Thanks to Robert Dick <dickrp@ece.northwestern.edu> for reporting this bug and submitting a patch. Adjust doc(object) to display useful documentation for plain values (e.g. help([]) now shows the methods on the list instead of just printing "[]"). (This change has been tested interactively, by generating docs for the standard library, and by running the module documentation webserver.)
* Avoid using *W functions on Win95.Martin v. Löwis2005-02-181-11/+24
|
* Avoid using items() in environ.update(). Fixes #1124513.Martin v. Löwis2005-02-171-8/+18
|
* Backport: NEWS blurb for fix of:Michael W. Hudson2005-02-171-0/+3
| | | | [ 1124295 ] Function's __name__ no longer accessible in restricted mode
* add notes about subprocess module & thread stacks, SSL supportAndrew MacIntyre2005-02-171-1/+18
|
* add build machinery for the SSL socket moduleAndrew MacIntyre2005-02-171-0/+8
|
* Backport: FixMichael W. Hudson2005-02-172-2/+3
| | | | | | | | [ 1124295 ] Function's __name__ no longer accessible in restricted mode which I introduced with a bit of mindless copy-paste when making __name__ writable. You can't assign to __name__ in restricted mode, which I'm going to pretend was intentional :)
* Fix name from PyDate_FromDateAndTime to PyDateTime_FromDateAndTime.Brett Cannon2005-02-171-1/+1
| | | | Closes bug #1124278.
* Remove dependency on order of mode flagsRaymond Hettinger2005-02-161-1/+1
|
* Update refences to "Macintosh" to reflect the state of affairs for OS X and notBrett Cannon2005-02-1318-623/+201
| | | | | | Mac OS 9. Backport of patch #1095802.
* fix decoding in _stringify to not depend on the default encodingFred Drake2005-02-112-1/+43
| | | | (closes SF bug #1115989)
* Fix tzset() check to not require the existence of tm->tm_zone. Also added moreBrett Cannon2005-02-104-7/+261
| | | | | | sanity checks for tzname when HAVE_TZNAME is defined. Closes bug #1096244. Thanks Gregory Bond.
* Fix typoAndrew M. Kuchling2005-02-102-2/+2
|
* SF bug #1119700: list extend() accepts args besides listsRaymond Hettinger2005-02-091-1/+1
|
* Backport 2.39:Guido van Rossum2005-02-081-1/+3
| | | | Close the discussion in SF bug 1069160.
* add 2.3.5, 2.4 to the history and licensing infoFred Drake2005-02-081-0/+2
|
* forwardport of 2.3.5 fixes to copy.pyAlex Martelli2005-02-073-4/+295
|