Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Disable some tests in anticipation of merging ast-branch to the head | Jeremy Hylton | 2005-10-20 | 2 | -29/+37 |
| | |||||
* | Find bsd db v4 on gentoo (2005 i think) | Neal Norwitz | 2005-10-20 | 1 | -0/+1 |
| | |||||
* | Fix SF bug # 1330039, patch # 1331635 from Lars Gustaebel (tarfile maintainer) | Neal Norwitz | 2005-10-20 | 2 | -2/+50 |
| | | | | | | | | | | | | | | Problem: if two files are assigned the same inode number by the filesystem, the second one will be added as a hardlink to the first, which means that the content will be lost. The patched code checks if the file's st_nlink is greater 1. So only for files that actually have several links pointing to them hardlinks will be created, which is what GNU tar does. Will backport. | ||||
* | Get BSD DB working most for version 3.2 | Neal Norwitz | 2005-10-20 | 1 | -0/+2 |
| | |||||
* | Get bsddb module to compile with version 3.2 of BSD DB. | Neal Norwitz | 2005-10-20 | 1 | -0/+8 |
| | |||||
* | SF bug #1331563 ] string_subscript doesn't check for failed PyMem_Malloc. ↵ | Neal Norwitz | 2005-10-20 | 1 | -0/+2 |
| | | | | Will backport | ||||
* | Whitespace corrections. | Marc-André Lemburg | 2005-10-19 | 1 | -19/+19 |
| | |||||
* | Bug fix for [ 1331062 ] utf 7 codec broken. | Marc-André Lemburg | 2005-10-19 | 1 | -8/+16 |
| | | | | Backport candidate. | ||||
* | SF bug #1328915, try to word kill a bit more generically. Backport candidate. | Neal Norwitz | 2005-10-18 | 1 | -2/+2 |
| | |||||
* | Drop permissions for Gregory K Johnson. | Raymond Hettinger | 2005-10-17 | 1 | -0/+4 |
| | |||||
* | Add Nick Coghlan | Raymond Hettinger | 2005-10-16 | 1 | -0/+4 |
| | |||||
* | 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 |
| | | | | a list (much slower in the pathological case of hundreds of child Loggers to a Placeholder - problem reported by Ryan Blazecka). | ||||
* | SF bug #1323739, C API doc for PySequence_Tuple duplicated | Neal Norwitz | 2005-10-12 | 1 | -9/+5 |
| | |||||
* | fix stupid typo | Fred Drake | 2005-10-11 | 1 | -1/+1 |
| | |||||
* | Added Host and Content-type headers to requests sent by HTTPHandler ↵ | Vinay Sajip | 2005-10-11 | 1 | -1/+10 |
| | | | | (suggested by Steven Vereecken) | ||||
* | SF bug #1323294, Minor error in the Library Reference doc. Will backport | Neal Norwitz | 2005-10-11 | 1 | -1/+2 |
| | |||||
* | Clarify the docs for Py_UNICODE. | Marc-André Lemburg | 2005-10-10 | 1 | -6/+16 |
| | |||||
* | Bug #1245379: Add "unicode-1-1-utf-7" as an alias for "utf-7" as specified | Walter Dörwald | 2005-10-09 | 3 | -1/+4 |
| | | | | 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 |
| | |||||
* | Fix errors in _synthesize because of missing basename attribute of | Georg Brandl | 2005-10-08 | 1 | -2/+6 |
| | | | | browser controller classes. | ||||
* | Fix unit test failure -- the output received from Python can be empty, | Guido van Rossum | 2005-10-08 | 1 | -1/+1 |
| | | | | but verify_valid_flag() wasn't expecting that. Will backport. | ||||
* | Fixed bug where the logging message was wrongly being demoted from Unicode ↵ | Vinay Sajip | 2005-10-07 | 1 | -6/+8 |
| | | | | to string (SF #1314107) | ||||
* | Part of SF patch #1313939: Speedup charmap decoding by extending | Walter Dörwald | 2005-10-06 | 4 | -77/+154 |
| | | | | | | | 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. | ||||
* | Change the internal "undefined codepoint" mark for CJKCodecs decoders | Hye-Shik Chang | 2005-10-06 | 1 | -1/+4 |
| | | | | | from U+FFFD to U+FFFE which is considered more appropriate. (from MAL's comment) | ||||
* | SF #1313496: bisect C replacement doesn't accept named args | Raymond Hettinger | 2005-10-05 | 2 | -22/+36 |
| | |||||
* | Get "make install" working again after adding Lib/test/bad_coding.py | Neal Norwitz | 2005-10-04 | 1 | -2/+2 |
| | | | | which can't be compiled. Thanks to Mat Martineau for spotting the problem. | ||||
* | Make close brace a paren to match open. | Neal Norwitz | 2005-10-04 | 1 | -1/+1 |
| | |||||
* | Armin caught this mistake in bug #973103. | Neal Norwitz | 2005-10-04 | 1 | -1/+1 |
| | |||||
* | open_new_win does not exist. use UNIX consistently, add autoraise parameter ↵ | Neal Norwitz | 2005-10-04 | 1 | -12/+13 |
| | | | | to open(). add versionadded tags to open_new_tab | ||||
* | 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 |
| | |||||
* | Correct docs for empty raise when no exception is active. | Raymond Hettinger | 2005-10-03 | 1 | -2/+3 |
| | |||||
* | fix link to subsection (SF bug #1311674) | Fred Drake | 2005-10-03 | 1 | -2/+4 |
| | |||||
* | Patch #754022: Greatly enhanced webbrowser.py. | Georg Brandl | 2005-10-03 | 3 | -197/+393 |
| | |||||
* | suppress more errors on my box, most are gentoo specific. ↵ | Neal Norwitz | 2005-10-03 | 1 | -0/+118 |
| | | | | Py_ADDRESS_IN_RANGE is x86_64 specific and the readline memory leaks should be generally applicable | ||||
* | SF Bug #1008310, os.major() os.minor() example and description change. Will ↵ | Neal Norwitz | 2005-10-03 | 1 | -2/+4 |
| | | | | backport. | ||||
* | Fix SF bug #991735, os.access reports true for read-only directories. Will ↵ | Neal Norwitz | 2005-10-03 | 1 | -0/+5 |
| | | | | backport | ||||
* | Fix SF bug #976608, Unhelpful error message when mtime of a module is -1 | Neal Norwitz | 2005-10-03 | 2 | -1/+7 |
| | | | | Will backport. | ||||
* | SF Bug # 941346, AIX shared library fix | Neal Norwitz | 2005-10-03 | 1 | -0/+4 |
| | | | | | | | | Since I can't test this, I'm just adding a comment. If we get access to AIX boxes, we can test this and really resolve. Anyone from IBM want to offer help? Backport candidate I suppose. | ||||
* | SF bug #887946, segfault if redirecting directory | Neal Norwitz | 2005-10-03 | 4 | -0/+70 |
| | | | | | | | Also provide a warning if a directory is passed on the command line. Add minimal command line test. Will backport. | ||||
* | SF Bug #1308042, platform dependent behaviour (Windoze of course) in UDP ↵ | Neal Norwitz | 2005-10-03 | 1 | -1/+2 |
| | | | | sockets. Will backport | ||||
* | SF patch #1227568, Expression AST node not documented. | Neal Norwitz | 2005-10-03 | 1 | -0/+1 |
| | |||||
* | SF patch #1227568, bug #1219273, Expression AST node not documented. ↵ | Neal Norwitz | 2005-10-03 | 1 | -0/+2 |
| | | | | Backport candidate if anyone cares. | ||||
* | 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 | 7 | -3/+39 |
| | | | | | | | - 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. | ||||
* | Fix PyString_Format so that the "%s" format works again when Unicode is not | Georg Brandl | 2005-10-01 | 1 | -0/+2 |
| | | | | enabled. | ||||
* | bug [ 729103 ] Cannot retrieve name of super object | Georg Brandl | 2005-10-01 | 2 | -3/+6 |
| |