summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Bug #1245379: Add "unicode-1-1-utf-7" as an alias for "utf-7" as specifiedWalter Dörwald2005-10-091-0/+2
| | | | by RFC 1642.
* Remove trailing spaces.Walter Dörwald2005-10-091-3/+3
|
* Fix indentation.Walter Dörwald2005-10-091-1/+1
|
* Part of SF patch #1313939: Speedup charmap decoding by extendingWalter Dörwald2005-10-061-0/+5
| | | | | | | PyUnicode_DecodeCharmap() the accept a unicode string as the mapping argument which is used as a mapping table. This code isn't used by any of the codecs yet.
* Patch #754022: Greatly enhanced webbrowser.py.Georg Brandl2005-10-031-0/+2
|
* suppress more errors on my box, most are gentoo specific. ↵Neal Norwitz2005-10-031-0/+118
| | | | Py_ADDRESS_IN_RANGE is x86_64 specific and the readline memory leaks should be generally applicable
* Fix SF bug #976608, Unhelpful error message when mtime of a module is -1Neal Norwitz2005-10-031-0/+2
| | | | Will backport.
* SF bug #887946, segfault if redirecting directoryNeal Norwitz2005-10-031-0/+3
| | | | | | | Also provide a warning if a directory is passed on the command line. Add minimal command line test. Will backport.
* SF patch #1227568, Expression AST node not documented.Neal Norwitz2005-10-031-0/+1
|
* - Fix segfault with invalid coding.Neal Norwitz2005-10-021-0/+4
| | | | | | | - SF Bug #772896, unknown encoding results in MemoryError, which is not helpful I will only backport the segfault fix. I'll let Anthony decide if he wants the other changes backported. I will do the backport if asked.
* bug [ 729103 ] Cannot retrieve name of super objectGeorg Brandl2005-10-011-0/+3
|
* Patch #1309009, Fix segfault in pyexpat when the XML document isNeal Norwitz2005-09-302-0/+4
| | | | | | in latin_1, but Python incorrectly assumes it is in UTF-8 format Will backport.
* patch [ 1300515 ] xdrlib.py: pack_fstring() did not use null bytes for paddingGeorg Brandl2005-09-291-0/+3
|
* bug [ 1296004 ] MemoryError in httplibGeorg Brandl2005-09-291-0/+3
|
* Fix parse errors in readline module when compiling without threads.Georg Brandl2005-09-291-0/+2
|
* Convert iterator __len__() methods to a private API.Raymond Hettinger2005-09-241-0/+4
|
* Patch #1288833: Removed thread lock from socket.getaddrinfo onHye-Shik Chang2005-09-241-0/+3
| | | | | FreeBSD 5.3 and later versions which got thread-safe getaddrinfo(3). (Reported by Maxim Sobolev)
* Patches #1298449 and #1298499: Add some missing checks for errorMichael W. Hudson2005-09-222-0/+4
| | | | | | returns in cStringIO.c. Thanks to Andrew Bennetts. This must be a backport candidate.
* SF Patch #1297028, cjkcodecs does not initialize type pointerNeal Norwitz2005-09-211-0/+3
| | | | | | | Fix segfault. I tried to write a test, but it wouldn't crash when running regrtest. This really should have some sort of test. Should definitely be backported.
* - On 64-bit platforms, when __len__() returns a value that cannot beGuido van Rossum2005-09-201-0/+3
| | | | | | | represented as a C int, raise OverflowError. (Forward port from 2.4.2; the patch to classobject.c was already in but needed a correction in the error message text.)
* - Patch #1166948: locale.py: Prefer LC_ALL, LC_CTYPE and LANG over LANGUAGEMatthias Klose2005-09-201-0/+6
| | | | | | | to get the correct encoding. - Patch #1166938: locale.py: Parse LANGUAGE as a colon separated list of languages.
* Note fix of memory leak.Neal Norwitz2005-09-191-0/+2
|
* skip _locale test if OS X < 10.4Skip Montanaro2005-09-191-0/+3
|
* Patch #1268314: Cache lines in StreamReader.readlines for performance.Martin v. Löwis2005-09-181-0/+2
| | | | Will backport to Python 2.4.
* Patch #1213831: Fix typo in unicodedata._getcode.Martin v. Löwis2005-09-181-0/+2
| | | | Will backport to Python 2.4.
* Clear out the regex cache when the TimeRE cache is invalidated by a localeBrett Cannon2005-09-151-0/+2
| | | | | | change. Fixes bug #1290505.
* *** empty log message ***Georg Brandl2005-09-141-0/+3
|
* bug [ 1274828 ] splitunc not documentedGeorg Brandl2005-09-141-0/+2
|
* Complete format code support in getargs.c::skipitem(), which is called whenGeorg Brandl2005-09-141-0/+3
| | | | | | | | | | | | | evaluating keyword arguments. CVS: ---------------------------------------------------------------------- CVS: Enter Log. Lines beginning with `CVS:' are removed automatically CVS: CVS: Committing in . CVS: CVS: Modified Files: CVS: Python/getargs.c CVS: ----------------------------------------------------------------------
* - Changes donated by Elemental Security to make it work on AIX 5.3Guido van Rossum2005-09-141-0/+4
| | | | | with IBM's 64-bit compiler (SF patch #1284289). This also closes SF bug #105470: test_pwd fails on 64bit system (Opteron).
* - Changes donated by Elemental Security to make it work on HP-UX 11 onGuido van Rossum2005-09-141-0/+3
| | | | Itanium2 with HP's 64-bit compiler (SF patch #1225212).
* Bug #1202493: Fixing SRE parser to handle '{}' as perl does, rather thanGustavo Niemeyer2005-09-141-0/+4
| | | | considering it exactly like a '*'.
* break sets a breakpoint rather than stopping the loop.Neal Norwitz2005-09-051-2/+3
| | | | | | | It *appears* a flag is necessary instead. This was tested in gdb 6.0. Backport candidate
* Fix rest markup and typos.Walter Dörwald2005-09-011-2/+2
|
* SF bug #1235646: codecs.StreamRecoder.next() now reencodes the data it readsWalter Dörwald2005-09-011-0/+3
| | | | | from the input stream, so that the output is a byte string in the correct encoding instead of a unicode string.
* SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complainWalter Dörwald2005-08-301-0/+4
| | | | | about illegal code points. The codec now supports PEP 293 style error handlers. (This is a variant of the Nik Haldimann's patch that detects truncated data)
* Patch #1168594: set sizes of non-regular files to zero. Fixes #1167128.Martin v. Löwis2005-08-271-0/+2
| | | | Will backport to 2.4.
* patch [ 810023 ] Fix for off-by-one bug in urllib.URLopener.retrieveGeorg Brandl2005-08-261-0/+3
|
* patch [ 756021 ] Allow socket.inet_aton("255.255.255.255") on WindowsGeorg Brandl2005-08-261-2/+5
|
* typoGeorg Brandl2005-08-261-1/+1
|
* Disallow keyword arguments for type constructors that don't use them.Georg Brandl2005-08-261-0/+3
| | | | (fixes bug #1119418)
* Correcting my last BZ2 entry. Adding one for #1215928.Georg Brandl2005-08-251-3/+5
|
* Make IDNA return an empty string when the input is empty. Fixes #1163178.Martin v. Löwis2005-08-251-0/+2
| | | | Will backport to 2.4.
* patch #848017: make Cookie more RFC-compliant.Georg Brandl2005-08-241-0/+3
|
* Patch [ 1062060 ] fix for 1016880 urllib.urlretrieve silently truncates dwnldGeorg Brandl2005-08-241-0/+4
|
* Patch [ 784089 ] A program to scan python files and list those require codingGeorg Brandl2005-08-241-0/+5
|
* Patch #1167716: Support Unicode filenames in mkpath. Fixes #1121494.Martin v. Löwis2005-08-241-0/+2
| | | | Will backport to 2.4.
* Forward UnicodeDecodeError into SyntaxError for source encoding errors.Martin v. Löwis2005-08-241-0/+2
| | | | Will backport to 2.4.
* Return complete lines from codec stream readersMartin v. Löwis2005-08-241-0/+4
| | | | | | even if there is an exception in later lines, resulting in correct line numbers for decoding errors in source code. Fixes #1178484. Will backport to 2.4.
* bug [ 1192315 ] 'clear -1' in pdbGeorg Brandl2005-08-241-0/+2
|