Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | #3874: document HTMLParser.unknown_decl(). | Georg Brandl | 2010-07-29 | 1 | -4/+12 | |
| | ||||||
* | Fix #9412: make list of messages an instance attribute instead of class ↵ | Georg Brandl | 2010-07-29 | 1 | -1/+3 | |
| | | | | attribute. | |||||
* | #9411: allow selecting an encoding for configparser files. Also adds a new ↵ | Georg Brandl | 2010-07-29 | 5 | -16/+136 | |
| | | | | test config file to test special cases. | |||||
* | Fix for r83202: improve the handling of empty lines. | Georg Brandl | 2010-07-29 | 1 | -7/+8 | |
| | ||||||
* | #6538: fix regex documentation again -- use fictional class names "regex" ↵ | Georg Brandl | 2010-07-29 | 1 | -200/+198 | |
| | | | | and "match" but do not document them as classes, remove 1.5 compat info and use new default argument syntax where possible. | |||||
* | Remove Python 1.5 compatibility note. | Georg Brandl | 2010-07-29 | 1 | -7/+4 | |
| | ||||||
* | Update test_os.py according to my last changes on _Environ.__repr__() | Victor Stinner | 2010-07-29 | 1 | -1/+3 | |
| | ||||||
* | Issue #9283: Oops, add missing { and } to repr(os.environ) | Victor Stinner | 2010-07-28 | 1 | -1/+1 | |
| | ||||||
* | #9283: Fix repr(os.environ), display unicode keys and values on POSIX systems | Victor Stinner | 2010-07-28 | 1 | -1/+3 | |
| | ||||||
* | Add missing file. | Georg Brandl | 2010-07-28 | 1 | -0/+537 | |
| | ||||||
* | Syntax cleanup. | Florent Xicluna | 2010-07-28 | 7 | -11/+9 | |
| | ||||||
* | Fix Issue6325 - robotparse to honor urls with query strings. | Senthil Kumaran | 2010-07-28 | 2 | -2/+15 | |
| | ||||||
* | #1682942: add some ConfigParser features: alternate delimiters, alternate ↵ | Georg Brandl | 2010-07-28 | 4 | -282/+547 | |
| | | | | comments, empty lines in values. Also enhance the docs with more examples and mention SafeConfigParser before ConfigParser. Patch by Lukas Langa, review by myself, Eric and Ezio. | |||||
* | #9354: Provide getsockopt() in asyncore file_wrapper(). Patch by Lukas Langa. | Georg Brandl | 2010-07-28 | 4 | -1/+24 | |
| | ||||||
* | Issue #8991: convertbuffer() rejects discontigious buffers | Victor Stinner | 2010-07-28 | 2 | -21/+10 | |
| | ||||||
* | Fix failure introduced in r83182. | Ezio Melotti | 2010-07-28 | 1 | -1/+1 | |
| | ||||||
* | Issue #8966: ctypes: Remove implicit bytes-unicode conversion | Victor Stinner | 2010-07-28 | 9 | -245/+51 | |
| | ||||||
* | Fix ctypes tests to avoid implicit bytes-unicode conversion | Victor Stinner | 2010-07-27 | 20 | -61/+57 | |
| | ||||||
* | Issue #9378: python -m pickle <pickle file> will now load and display | Alexander Belopolsky | 2010-07-27 | 2 | -1/+26 | |
| | | | | the first object in the pickle file. | |||||
* | With skipUnless there is no need to add test classes conditionally. | Ezio Melotti | 2010-07-27 | 1 | -6/+3 | |
| | ||||||
* | Issue #9294: remove dead code in Objects/object.c. Patch by Grant Limberg. | Antoine Pitrou | 2010-07-27 | 2 | -13/+3 | |
| | ||||||
* | Use proper skips and assert* methods in test_asyncore. | Ezio Melotti | 2010-07-27 | 1 | -96/+97 | |
| | ||||||
* | Issue #4770: Restrict binascii module to accept only bytes (as specified). | Florent Xicluna | 2010-07-27 | 7 | -22/+42 | |
| | | | | And fix the email package to encode to ASCII instead of ``raw-unicode-escape`` before ASCII-to-binary decoding. | |||||
* | Update Sphinx to 1.0.1. | Georg Brandl | 2010-07-27 | 2 | -2/+2 | |
| | ||||||
* | Issue #9384: python -m tkinter will now display a simple demo applet. | Alexander Belopolsky | 2010-07-27 | 3 | -1/+12 | |
| | ||||||
* | The default size of the re module's compiled regular expression cache has | Gregory P. Smith | 2010-07-27 | 3 | -3/+106 | |
| | | | | | | | | been increased from 100 to 500 and the cache replacement policy has changed from simply clearing the entire cache on overflow to randomly forgetting 20% of the existing cached compiled regular expressions. This is a performance win for applications that use a lot of regular expressions and limits the impact of the performance hit anytime the cache is exceeded. | |||||
* | Clarify. | Georg Brandl | 2010-07-26 | 1 | -2/+2 | |
| | ||||||
* | Added versionadded entry for the annotate argument. | Alexander Belopolsky | 2010-07-26 | 1 | -0/+2 | |
| | ||||||
* | Add Reid. | Georg Brandl | 2010-07-26 | 1 | -0/+4 | |
| | ||||||
* | Fix indentation in example. | Georg Brandl | 2010-07-26 | 1 | -2/+2 | |
| | ||||||
* | Fix grammar. | Georg Brandl | 2010-07-26 | 1 | -2/+2 | |
| | ||||||
* | Reword paragraph | Andrew M. Kuchling | 2010-07-26 | 1 | -2/+3 | |
| | ||||||
* | #7637: fix a grammar error; simplify a sentence | Andrew M. Kuchling | 2010-07-26 | 1 | -3/+3 | |
| | ||||||
* | Add Brian Quinlan. | Georg Brandl | 2010-07-26 | 1 | -0/+3 | |
| | ||||||
* | #9381: fix markup. | Georg Brandl | 2010-07-26 | 1 | -1/+1 | |
| | ||||||
* | Make python version of fromtimestamp behave more like C. | Alexander Belopolsky | 2010-07-26 | 2 | -10/+20 | |
| | ||||||
* | Add note about #7113 and add Łukasz Langa to ACKS | Brian Curtin | 2010-07-26 | 2 | -0/+3 | |
| | ||||||
* | Fix #7113. Patch by Łukasz Langa. | Brian Curtin | 2010-07-26 | 2 | -21/+60 | |
| | | | | | Changes include using a list of lines instead of patching together using string interpolation, and a multi-line value test cases. | |||||
* | #777884: make .normalize() do nothing for childless nodes, instead of ↵ | Andrew M. Kuchling | 2010-07-25 | 2 | -0/+12 | |
| | | | | raising an exception | |||||
* | #7637: clarify description of encoding parameter | Andrew M. Kuchling | 2010-07-25 | 1 | -14/+19 | |
| | ||||||
* | Issue #4686 - add .args to exceptions in the configparsermodule | Michael Foord | 2010-07-25 | 3 | -17/+44 | |
| | ||||||
* | #1495229: update the type names used by the XML DOM mapping | Andrew M. Kuchling | 2010-07-25 | 1 | -14/+9 | |
| | ||||||
* | Corrected comments on where settrace and setprofile are tested. | Alexander Belopolsky | 2010-07-25 | 1 | -2/+2 | |
| | ||||||
* | Issue #9315: Renamed test_trace to test_sys_settrace and | Alexander Belopolsky | 2010-07-25 | 2 | -0/+0 | |
| | | | | | test_profilehooks to test_sys_setprofile so that test_trace can be used for testing the trace module and for naming consistency. | |||||
* | Issue #9315: Revert r83005 before renaming test_trace to | Alexander Belopolsky | 2010-07-25 | 1 | -0/+0 | |
| | | | | | test_sys_settrace and test_profilehooks to test_sys_setprofile in all three branches. | |||||
* | Fix for issue 9367: the test code for os.getgroups | Ronald Oussoren | 2010-07-24 | 1 | -1/+5 | |
| | | | | | | assumes that the result of getgroups and the output of the id(1) command return groups in the same order. That assumption is both fragile and false. | |||||
* | Put listdir default argument into declaration. | Martin v. Löwis | 2010-07-24 | 1 | -2/+2 | |
| | ||||||
* | Implementation for issue 4184 | Richard Jones | 2010-07-24 | 2 | -44/+266 | |
| | | | | Changes the previously private attributes to make them public, increasing the potential for extending the library in user code. Backward-compatible and documented. | |||||
* | #9032: XML-RPC client: Transport.request() retries on EPIPE error | Victor Stinner | 2010-07-24 | 3 | -6/+5 | |
| | | | | | | | | | | | | The EPIPE error occurs when the server closes the socket and the client sends a "big" XML-RPC request (I don't know exactly the size threshold). request() just have to ignore the error because single_request() closes the socket on error, and so the next call to single_request() will open a new socket. Remove also a comment in the HTTP client because it's now wrong: see r70643 and issue #5542. | |||||
* | Issue #4629: getopt raises an error if an argument ends with = whereas getopt | Victor Stinner | 2010-07-24 | 3 | -1/+11 | |
| | | | | | doesn't except a value (eg. --help= is rejected if getopt uses ['help='] long options). |