| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge ast-branch to head | Jeremy Hylton | 2005-10-20 | 15 | -80/+225 |
|
|
* | Disable some tests in anticipation of merging ast-branch to the head | Jeremy Hylton | 2005-10-20 | 2 | -29/+37 |
|
|
* | Fix SF bug # 1330039, patch # 1331635 from Lars Gustaebel (tarfile maintainer) | Neal Norwitz | 2005-10-20 | 2 | -2/+50 |
|
|
* | Get BSD DB working most for version 3.2 | Neal Norwitz | 2005-10-20 | 1 | -0/+2 |
|
|
* | Teach unquote() to handle unicode inputs | Raymond Hettinger | 2005-10-15 | 2 | -0/+6 |
|
|
* | Optimised Placeholders handling of child loggers by using a dict rather than ... | Vinay Sajip | 2005-10-14 | 1 | -4/+8 |
|
|
* | Added Host and Content-type headers to requests sent by HTTPHandler (suggeste... | Vinay Sajip | 2005-10-11 | 1 | -1/+10 |
|
|
* | Bug #1245379: Add "unicode-1-1-utf-7" as an alias for "utf-7" as specified | Walter Dörwald | 2005-10-09 | 1 | -0/+1 |
|
|
* | Fix errors in _synthesize because of missing basename attribute of | Georg Brandl | 2005-10-08 | 1 | -2/+6 |
|
|
* | Fix unit test failure -- the output received from Python can be empty, | Guido van Rossum | 2005-10-08 | 1 | -1/+1 |
|
|
* | Fixed bug where the logging message was wrongly being demoted from Unicode to... | Vinay Sajip | 2005-10-07 | 1 | -6/+8 |
|
|
* | Part of SF patch #1313939: Speedup charmap decoding by extending | Walter Dörwald | 2005-10-06 | 1 | -1/+36 |
|
|
* | SF #1313496: bisect C replacement doesn't accept named args | Raymond Hettinger | 2005-10-05 | 1 | -0/+10 |
|
|
* | Fix pychecker warnings | Neal Norwitz | 2005-10-04 | 1 | -4/+9 |
|
|
* | Incorporate Tal Einat's comment on Patch 936169: Fixes alignment problem. | Kurt B. Kaiser | 2005-10-03 | 2 | -4/+13 |
|
|
* | Tweak CodeContext.py docstrings, comments, and names. | Kurt B. Kaiser | 2005-10-03 | 1 | -51/+57 |
|
|
* | Patch #754022: Greatly enhanced webbrowser.py. | Georg Brandl | 2005-10-03 | 1 | -175/+338 |
|
|
* | SF bug #887946, segfault if redirecting directory | Neal Norwitz | 2005-10-03 | 1 | -0/+50 |
|
|
* | Increased performance in CodeContext extension Patch 936169 Noam Raphael | Kurt B. Kaiser | 2005-10-02 | 2 | -31/+49 |
|
|
* | - Fix segfault with invalid coding. | Neal Norwitz | 2005-10-02 | 2 | -0/+22 |
|
|
* | bug [ 729103 ] Cannot retrieve name of super object | Georg Brandl | 2005-10-01 | 1 | -3/+3 |
|
|
* | Patch #1309009, Fix segfault in pyexpat when the XML document is | Neal Norwitz | 2005-09-30 | 1 | -0/+9 |
|
|
* | patch [ 1300515 ] xdrlib.py: pack_fstring() did not use null bytes for padding | Georg Brandl | 2005-09-29 | 1 | -1/+1 |
|
|
* | bug [ 1296004 ] MemoryError in httplib | Georg Brandl | 2005-09-29 | 1 | -4/+7 |
|
|
* | some more fixes and tests for inspect.getsource(), triggered by crashes | Armin Rigo | 2005-09-25 | 3 | -27/+56 |
|
|
* | Convert iterator __len__() methods to a private API. | Raymond Hettinger | 2005-09-24 | 3 | -1/+13 |
|
|
* | Changed license header: Now simply referring to PSF. This closes bug | Peter Astrand | 2005-09-23 | 1 | -22/+2 |
|
|
* | Patches #1298449 and #1298499: Add some missing checks for error | Michael W. Hudson | 2005-09-22 | 1 | -0/+7 |
|
|
* | MacOSX 10.4 apparently does not allow the creation time to be set to later | Jack Jansen | 2005-09-21 | 1 | -2/+2 |
|
|
* | test and fix for buggy handling of exceptions raised by C functions, | Armin Rigo | 2005-09-20 | 2 | -3/+22 |
|
|
* | - Patch #1166948: locale.py: Prefer LC_ALL, LC_CTYPE and LANG over LANGUAGE | Matthias Klose | 2005-09-20 | 1 | -1/+3 |
|
|
* | Reverted revision 1.83, which introduced a bug and subtle incompatibility | Armin Rigo | 2005-09-19 | 1 | -8/+6 |
|
|
* | skip _locale test if OS X < 10.4 | Skip Montanaro | 2005-09-19 | 1 | -0/+6 |
|
|
* | Patch #1268314: Cache lines in StreamReader.readlines for performance. | Martin v. Löwis | 2005-09-18 | 1 | -0/+37 |
|
|
* | Test case for latest complexobject fix. | Georg Brandl | 2005-09-17 | 1 | -0/+2 |
|
|
* | Added lock acquisition around handler removal from logger | Vinay Sajip | 2005-09-16 | 1 | -1/+5 |
|
|
* | No longer ignore exceptions raised by comparisons during key lookup. | Raymond Hettinger | 2005-09-16 | 1 | -0/+17 |
|
|
* | Clear out the regex cache when the TimeRE cache is invalidated by a locale | Brett Cannon | 2005-09-15 | 2 | -1/+4 |
|
|
* | - Changes donated by Elemental Security to make it work on AIX 5.3 | Guido van Rossum | 2005-09-14 | 2 | -5/+37 |
|
|
* | Bug #1202493: Fixing SRE parser to handle '{}' as perl does, rather than | Gustavo Niemeyer | 2005-09-14 | 2 | -0/+6 |
|
|
* | Speed-up escape() | Raymond Hettinger | 2005-09-12 | 1 | -1/+7 |
|
|
* | Minor cleanup. | Raymond Hettinger | 2005-09-11 | 1 | -2/+1 |
|
|
* | Corrected version of 1.170 | Raymond Hettinger | 2005-09-10 | 1 | -6/+3 |
|
|
* | Revert 1.170. Add tests. | Raymond Hettinger | 2005-09-10 | 2 | -3/+12 |
|
|
* | Simplify and speed-up unquote(). | Raymond Hettinger | 2005-09-10 | 1 | -15/+10 |
|
|
* | Simplify and speed-up quote_plus(). | Raymond Hettinger | 2005-09-10 | 1 | -6/+3 |
|
|
* | SF #1285086: urllib.quote is too slow | Raymond Hettinger | 2005-09-09 | 1 | -24/+12 |
|
|
* | Added _handlerList to allow shutdown to flush and close handlers in reverse o... | Vinay Sajip | 2005-09-08 | 1 | -1/+4 |
|
|
* | Quote docstring with r"" to keep '\r\n' in example code. | Hye-Shik Chang | 2005-09-07 | 1 | -1/+1 |
|
|
* | Changed _srcfile determination to support py2exe. | Vinay Sajip | 2005-09-02 | 1 | -1/+3 |
|
|