Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Patch #1162825: Support non-ASCII characters in IDLE window titles. | Martin v. Löwis | 2005-11-27 | 1 | -0/+2 | |
| | ||||||
* | bug #1365984: urllib and data: URLs. Problem was that cStringIO objects ↵ | Georg Brandl | 2005-11-26 | 1 | -0/+2 | |
| | | | | cannot be assigned attributes on the fly. | |||||
* | bug #1281408: make Py_BuildValue work with unsigned longs and long longs | Georg Brandl | 2005-11-24 | 1 | -0/+3 | |
| | ||||||
* | Prevent threading.Thread.join() from blocking when a previous call raised an | Brett Cannon | 2005-11-23 | 1 | -0/+4 | |
| | | | | | | exception (e.g., passing in an illegal argument). Applies patch #1314396. Thanks Eric Blossom. | |||||
* | Bug #869197: setgroups rejects long integer argument | Georg Brandl | 2005-11-22 | 1 | -0/+2 | |
| | ||||||
* | Typo fix | Andrew M. Kuchling | 2005-11-22 | 1 | -1/+1 | |
| | ||||||
* | Use basestring instead of type.StringType for checking whether a input | Walter Dörwald | 2005-11-21 | 1 | -0/+2 | |
| | | | | | or output file is a file name instead of a file object. This enables unicode file names as arguments to uu.encode() and uu.decode(). | |||||
* | - SF Bug #1350188, "setdlopenflags" leads to crash upon "import" | Neal Norwitz | 2005-11-09 | 1 | -0/+4 | |
| | | | | | It was possible dlerror() returns a NULL pointer, use a default error message in this case. | |||||
* | Bug #1346533, select.poll() doesn't raise an error if timeout > sys.maxint | Neal Norwitz | 2005-11-03 | 1 | -0/+2 | |
| | | | | | | Need to check return result of PyInt_AsLong() Will backport. | |||||
* | Change time.strptime() to raise ValueError whenever there is an error in the | Brett Cannon | 2005-11-02 | 1 | -0/+3 | |
| | | | | | | | format string. Before exceptions generated by the internal code propagated up to the user and were not helpful. Closes bug #1340337. | |||||
* | Bug #1344508, Fix UNIX mmap leaking file descriptors. Will backport. | Neal Norwitz | 2005-11-02 | 1 | -0/+2 | |
| | ||||||
* | Patch #1338314, Bug #1336623: fix tarfile so it can extract | Neal Norwitz | 2005-10-28 | 1 | -0/+3 | |
| | | | | | | REGTYPE directories from tarfiles written by old programs. Will backport. | |||||
* | Add news item for the new charmap codecs. | Marc-André Lemburg | 2005-10-23 | 1 | -0/+8 | |
| | ||||||
* | add some notes about recent checkins | Neal Norwitz | 2005-10-21 | 1 | -0/+6 | |
| | ||||||
* | Get the bug # write | Neal Norwitz | 2005-10-21 | 1 | -1/+1 | |
| | ||||||
* | Incorrect code was generated for: | Neal Norwitz | 2005-10-21 | 1 | -0/+3 | |
| | | | | | | | foo(a = i for i in range(10)) This should have generated a SyntaxError. Fix the Grammar so it raises a SyntaxError and test it. | |||||
* | Bug #1245379: Add "unicode-1-1-utf-7" as an alias for "utf-7" as specified | Walter Dörwald | 2005-10-09 | 1 | -0/+2 | |
| | | | | by RFC 1642. | |||||
* | Remove trailing spaces. | Walter Dörwald | 2005-10-09 | 1 | -3/+3 | |
| | ||||||
* | Fix indentation. | Walter Dörwald | 2005-10-09 | 1 | -1/+1 | |
| | ||||||
* | Part of SF patch #1313939: Speedup charmap decoding by extending | Walter Dörwald | 2005-10-06 | 1 | -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 Brandl | 2005-10-03 | 1 | -0/+2 | |
| | ||||||
* | Fix SF bug #976608, Unhelpful error message when mtime of a module is -1 | Neal Norwitz | 2005-10-03 | 1 | -0/+2 | |
| | | | | Will backport. | |||||
* | SF bug #887946, segfault if redirecting directory | Neal Norwitz | 2005-10-03 | 1 | -0/+3 | |
| | | | | | | | Also provide a warning if a directory is passed on the command line. Add minimal command line test. Will backport. | |||||
* | - Fix segfault with invalid coding. | Neal Norwitz | 2005-10-02 | 1 | -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 object | Georg Brandl | 2005-10-01 | 1 | -0/+3 | |
| | ||||||
* | Patch #1309009, Fix segfault in pyexpat when the XML document is | Neal Norwitz | 2005-09-30 | 1 | -0/+3 | |
| | | | | | | 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 padding | Georg Brandl | 2005-09-29 | 1 | -0/+3 | |
| | ||||||
* | bug [ 1296004 ] MemoryError in httplib | Georg Brandl | 2005-09-29 | 1 | -0/+3 | |
| | ||||||
* | Fix parse errors in readline module when compiling without threads. | Georg Brandl | 2005-09-29 | 1 | -0/+2 | |
| | ||||||
* | Convert iterator __len__() methods to a private API. | Raymond Hettinger | 2005-09-24 | 1 | -0/+4 | |
| | ||||||
* | Patch #1288833: Removed thread lock from socket.getaddrinfo on | Hye-Shik Chang | 2005-09-24 | 1 | -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 error | Michael W. Hudson | 2005-09-22 | 1 | -0/+3 | |
| | | | | | | returns in cStringIO.c. Thanks to Andrew Bennetts. This must be a backport candidate. | |||||
* | SF Patch #1297028, cjkcodecs does not initialize type pointer | Neal Norwitz | 2005-09-21 | 1 | -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 be | Guido van Rossum | 2005-09-20 | 1 | -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 LANGUAGE | Matthias Klose | 2005-09-20 | 1 | -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 Norwitz | 2005-09-19 | 1 | -0/+2 | |
| | ||||||
* | skip _locale test if OS X < 10.4 | Skip Montanaro | 2005-09-19 | 1 | -0/+3 | |
| | ||||||
* | Patch #1268314: Cache lines in StreamReader.readlines for performance. | Martin v. Löwis | 2005-09-18 | 1 | -0/+2 | |
| | | | | Will backport to Python 2.4. | |||||
* | Patch #1213831: Fix typo in unicodedata._getcode. | Martin v. Löwis | 2005-09-18 | 1 | -0/+2 | |
| | | | | Will backport to Python 2.4. | |||||
* | Clear out the regex cache when the TimeRE cache is invalidated by a locale | Brett Cannon | 2005-09-15 | 1 | -0/+2 | |
| | | | | | | change. Fixes bug #1290505. | |||||
* | *** empty log message *** | Georg Brandl | 2005-09-14 | 1 | -0/+3 | |
| | ||||||
* | bug [ 1274828 ] splitunc not documented | Georg Brandl | 2005-09-14 | 1 | -0/+2 | |
| | ||||||
* | Complete format code support in getargs.c::skipitem(), which is called when | Georg Brandl | 2005-09-14 | 1 | -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.3 | Guido van Rossum | 2005-09-14 | 1 | -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 on | Guido van Rossum | 2005-09-14 | 1 | -0/+3 | |
| | | | | Itanium2 with HP's 64-bit compiler (SF patch #1225212). | |||||
* | Bug #1202493: Fixing SRE parser to handle '{}' as perl does, rather than | Gustavo Niemeyer | 2005-09-14 | 1 | -0/+4 | |
| | | | | considering it exactly like a '*'. | |||||
* | Fix rest markup and typos. | Walter Dörwald | 2005-09-01 | 1 | -2/+2 | |
| | ||||||
* | SF bug #1235646: codecs.StreamRecoder.next() now reencodes the data it reads | Walter Dörwald | 2005-09-01 | 1 | -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 complain | Walter Dörwald | 2005-08-30 | 1 | -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öwis | 2005-08-27 | 1 | -0/+2 | |
| | | | | Will backport to 2.4. |