summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* 2.4.2 release stuffAnthony Baxter2005-09-282-1/+6
|
* Backport (with Anthony's blessing (in fact he reminded me to do it :)):Michael W. Hudson2005-09-261-0/+7
| | | | | | | Patches #1298449 and #1298499: Add some missing checks for error returns in cStringIO.c. Thanks to Andrew Bennetts. This must be a backport candidate.
* Changed header to match the HEAD version:Peter Astrand2005-09-231-20/+4
| | | | | | | * Added note about Python 2.2 compatibility. * Changed license header: Now simply referring to PSF. This closes bug 1138653.
* Backport Jack Jansen's fix for test_macfs.py (broke on OS X 10.4.2).Guido van Rossum2005-09-221-2/+2
|
* (backport) test and fix for buggy handling of exceptions raised by CArmin Rigo2005-09-202-3/+22
| | | | | functions, causing the profiler to crash on an AssertionError if the same Python function catches multiple exceptions from C functions.
* backport:Anthony Baxter2005-09-201-0/+7
| | | | | | | | | | test_default_encoding_issues(): Fully restore sys.setdefaultencoding. test_site often failed under "regrtest.py -r", because this xmlrpc test left sys with a setdefaultencoding attribute, but loading site.py removes that attribute and test_site.py verifies the attribute is gone. Changed this test to get rid of sys.setdefaultencoding if it didn't exist when this test started.
* pre-release machinationsAnthony Baxter2005-09-202-3/+3
|
* - Patch #1166948: locale.py: Prefer LC_ALL, LC_CTYPE and LANG over LANGUAGEMatthias Klose2005-09-201-1/+3
| | | | | | | to get the correct encoding. - Patch #1166938: locale.py: Parse LANGUAGE as a colon separated list of languages.
* Bug #1202493: Fixing SRE parser to handle '{}' as perl does, rather thanGeorg Brandl2005-09-182-0/+6
| | | | | | considering it exactly like a '*'. Backport from 2.5 branch.
* Patch #1268314: Cache lines in StreamReader.readlines for performance.Martin v. Löwis2005-09-181-0/+37
|
* Test case for latest complexobject fix.Georg Brandl2005-09-171-0/+2
|
* Misc. backported changesVinay Sajip2005-09-162-6/+15
|
* Sync-up with head except for 1.72 which is Py2.5 specific.Raymond Hettinger2005-09-151-10/+10
|
* Sync-up with minor changes to the head.Raymond Hettinger2005-09-151-14/+15
|
* Removed assignment to an unused variable.Raymond Hettinger2005-09-151-1/+0
|
* Fix bug #687747 and patch #1077979 in webbrowser.py.Georg Brandl2005-09-151-2/+2
|
* Sync-up with patches to the head.Raymond Hettinger2005-09-151-53/+61
| | | | | Includes SF 1016880: urllib.urlretrieve silently truncates downloads and the performance fix-ups.
* Backport SF #1209527.Raymond Hettinger2005-09-151-9/+13
|
* Clear the regex cache when the locale changes.Brett Cannon2005-09-152-1/+4
| | | | Backport of fix for bug #1290505.
* - Changes donated by Elemental Security to make it work on AIX 5.3Guido van Rossum2005-09-142-5/+37
| | | | | with IBM's 64-bit compiler (SF patch #1284289). This also closes SF bug #105470: test_pwd fails on 64bit system (Opteron).
* Backport checkin:Walter Dörwald2005-09-011-1/+3
| | | | | | SF bug #1235646: codecs.StreamRecoder.next() now reencodes the data it reads from the input stream, so that the output is a byte string in the correct encoding instead of a unicode string.
* Reverting previous checkin. This breaks too much of HTMLParser to be appliedGeorg Brandl2005-09-011-1/+1
| | | | | | | | | | | | | | without thought. Anyway, such malformed HTML is better handled by something like BeautifulSoup. CVS: ---------------------------------------------------------------------- CVS: Enter Log. Lines beginning with `CVS:' are removed automatically CVS: CVS: Committing in . CVS: CVS: Modified Files: CVS: Lib/HTMLParser.py CVS: ----------------------------------------------------------------------
* patch [ 1242454 ] shutil.copytree() quits too soon after an error.Georg Brandl2005-08-311-0/+4
|
* backport bug [ 761452 ] HTMLParser chokes on my.yahoo.com outputGeorg Brandl2005-08-311-1/+1
|
* Backport checkin:Walter Dörwald2005-08-302-3/+82
| | | | | | SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complain about illegal code points. The codec now supports PEP 293 style error handlers. (This is a variant of the patch by Nik Haldimann that detects truncated data)
* Fix logic error introduced in last commit.Brett Cannon2005-08-291-2/+2
|
* Fix bug where __contains__ should have been used over str.find()Brett Cannon2005-08-271-1/+1
|
* Patch #1168594: set sizes of non-regular files to zero. Fixes #1167128.Martin v. Löwis2005-08-272-14/+47
|
* Add list() around xreadlines()Georg Brandl2005-08-261-1/+1
|
* backport patch [ 810023 ] Fix for off-by-one bug in urllib.URLopener.retrieveGeorg Brandl2005-08-262-17/+100
|
* backport patch [ 756021 ] Allow socket.inet_aton("255.255.255.255") on WindowsGeorg Brandl2005-08-261-0/+2
|
* backport bug [ 1262320 ] minidom.py alternate newl support is brokenGeorg Brandl2005-08-251-4/+11
|
* backport bug [ 1262320 ] minidom.py alternate newl support is brokenGeorg Brandl2005-08-251-6/+6
|
* Backport fixes for bugs #1191043 and #1215928.Georg Brandl2005-08-251-1/+17
|
* Make IDNA return an empty string when the input is empty. Fixes #1163178.Martin v. Löwis2005-08-252-0/+12
|
* Backport bug #735248: fix urllib2.parse_http_list().Georg Brandl2005-08-242-39/+44
|
* Backport bug #1016563: Bug in urllib2 proxy authGeorg Brandl2005-08-241-1/+1
|
* Patch #1167716: Support Unicode filenames in mkpath. Fixes #1121494.Martin v. Löwis2005-08-241-1/+1
|
* Return complete lines from codec stream readersMartin v. Löwis2005-08-241-3/+17
| | | | | even if there is an exception in later lines, resulting in correct line numbers for decoding errors in source code. Fixes #1178484.
* backport bug [ 1192315 ] 'clear -1' in pdbGeorg Brandl2005-08-241-1/+4
|
* backport bug [ 728515 ] mmap's resize method resizes the file in win32 but ↵Georg Brandl2005-08-241-0/+8
| | | | not unix
* Revert previous checkin.Martin v. Löwis2005-08-241-7/+20
|
* Patch #1262036: Make tarfile name absolute. Fixes #1257255.Martin v. Löwis2005-08-241-20/+7
|
* Backport 1.74Raymond Hettinger2005-08-241-7/+16
|
* - Mac line endings were incorrect when pasting code from some browsersKurt B. Kaiser2005-08-232-0/+10
| | | | | | | when using X11 and the Fink distribution. Python Bug 1263656. Modified Files: Tag: release24-maint NEWS.txt ScriptBinding.py
* add note about "markupbase" not being intended for direct useFred Drake2005-08-231-1/+7
| | | | (closes SF bug #736659, patch #901369; backport of Lib/markupbase.py 1.11)
* backport bug [ 1266296 ] Mistakes in decimal.Context.subtract documentationGeorg Brandl2005-08-221-1/+1
|
* backport bug #1266283: add lexists to os.path.__all__Georg Brandl2005-08-224-11/+11
|
* SF bug #1242657: list(obj) can swallow KeyboardInterruptRaymond Hettinger2005-08-211-0/+9
| | | | | | Fix over-aggressive PyErr_Clear(). The same code fragment appears in various guises in list.extend(), map(), filter(), zip(), and internally in PySequence_Tuple().
* Fix for SF bug # 900092, hotshot.stats.load assertion failure. This patchBarry Warsaw2005-08-151-0/+1
| | | | | | | restores the tracing of a 'return' event for exceptions that cause a function to exit. Also, update the unit test. I will port to Python 2.5.