summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update Sphinx to 1.0.1.Georg Brandl2010-07-272-2/+2
|
* Issue #9384: python -m tkinter will now display a simple demo applet.Alexander Belopolsky2010-07-273-1/+12
|
* The default size of the re module's compiled regular expression cache hasGregory P. Smith2010-07-273-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 Brandl2010-07-261-2/+2
|
* Added versionadded entry for the annotate argument.Alexander Belopolsky2010-07-261-0/+2
|
* Add Reid.Georg Brandl2010-07-261-0/+4
|
* Fix indentation in example.Georg Brandl2010-07-261-2/+2
|
* Fix grammar.Georg Brandl2010-07-261-2/+2
|
* Reword paragraphAndrew M. Kuchling2010-07-261-2/+3
|
* #7637: fix a grammar error; simplify a sentenceAndrew M. Kuchling2010-07-261-3/+3
|
* Add Brian Quinlan.Georg Brandl2010-07-261-0/+3
|
* #9381: fix markup.Georg Brandl2010-07-261-1/+1
|
* Make python version of fromtimestamp behave more like C.Alexander Belopolsky2010-07-262-10/+20
|
* Add note about #7113 and add Łukasz Langa to ACKSBrian Curtin2010-07-262-0/+3
|
* Fix #7113. Patch by Łukasz Langa.Brian Curtin2010-07-262-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. Kuchling2010-07-252-0/+12
| | | | raising an exception
* #7637: clarify description of encoding parameterAndrew M. Kuchling2010-07-251-14/+19
|
* Issue #4686 - add .args to exceptions in the configparsermoduleMichael Foord2010-07-253-17/+44
|
* #1495229: update the type names used by the XML DOM mappingAndrew M. Kuchling2010-07-251-14/+9
|
* Corrected comments on where settrace and setprofile are tested.Alexander Belopolsky2010-07-251-2/+2
|
* Issue #9315: Renamed test_trace to test_sys_settrace andAlexander Belopolsky2010-07-252-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 toAlexander Belopolsky2010-07-251-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.getgroupsRonald Oussoren2010-07-241-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öwis2010-07-241-2/+2
|
* Implementation for issue 4184Richard Jones2010-07-242-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 errorVictor Stinner2010-07-243-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 getoptVictor Stinner2010-07-243-1/+11
| | | | | doesn't except a value (eg. --help= is rejected if getopt uses ['help='] long options).
* Use _datetime docstring if _datetime is available.Alexander Belopolsky2010-07-231-0/+5
|
* Issue #7989: Added pure python implementation of the datetime module.Alexander Belopolsky2010-07-239-3670/+5813
|
* Add Brian Brazil.Brett Cannon2010-07-231-0/+1
|
* Mention in the fnmatch docs that meta-characters in translate cannot be quoted.Brett Cannon2010-07-231-0/+2
| | | | Closes issue 9358. Thanks to Brian Brazil for the patch.
* Add queue tests for empty, full, put_nowait, and get_nowait.Brett Cannon2010-07-231-0/+23
| | | | Closes issue 9357. Thanks to Brian Brazil for the patch.
* Update to 1.0.Georg Brandl2010-07-231-1/+1
|
* Fix some markup glitches.Georg Brandl2010-07-234-4/+6
|
* #9359: fix typo. Thanks to Piotr Kasprzyk for the patch.Ezio Melotti2010-07-231-1/+1
|
* Tab test_repr_daemon over so it's included in ThreadTests.Brian Curtin2010-07-231-5/+5
| | | | Noticed by Amaury.
* Add tests for fnmatch.filter and translate.Brett Cannon2010-07-231-2/+24
| | | | Partially closes issue 9356. Thanks to Brian Brazil for the patch.
* Make fnmatch be more PEP 8 compliant.Brett Cannon2010-07-231-8/+11
| | | | Partially closes issue 9356. Thanks to Brian Brazil for the patch.
* New tests for smtpd module. Has full coverage for SMTPChannel and SMTPServer.Richard Jones2010-07-231-0/+221
|
* Ensure that sys.prefix can reliably be foundRonald Oussoren2010-07-231-1/+1
| | | | | | | | | | | | | on OSX. This fixes a small issue that was exposed by running test_subprocess through regrtest (and hence in a subdirectory). Without this patch running python.exe from the build tree will fail when these tree conditions are true: 1) the CWD is not the root of build tree 2) python.exe is found through $PATH 3) the framework is not yet installed
* Add more tests for the threading.Thread.repr.Brett Cannon2010-07-231-1/+8
| | | | Partially closes issue 9346. Thanks to Brian Brazil for the patch.
* Rip out old testing code that was inlined in threading.Brett Cannon2010-07-231-88/+0
| | | | Partially closes issue 9346. Thanks Brian Brazil for the patch.
* Rename some macros in the sha1 module to no longer conflict with termios.h.Brett Cannon2010-07-231-28/+28
|
* Stop shadowing a test class.Brett Cannon2010-07-231-2/+2
|
* Explicitly test relative imports by reusing importlib tests.Brett Cannon2010-07-231-1/+14
| | | | Closes issue 8392. Thanks Virgil Dupras for the initial patch.
* Test calendar.monthrange.Brett Cannon2010-07-232-0/+30
| | | | Closes issue 9342. Thanks John Chandler for the patch.
* This fixes issue7900 by adding code that dealsRonald Oussoren2010-07-233-8/+101
| | | | | | | | | with the fact that getgroups(2) might return more that MAX_GROUPS on OSX. See the issue (and python-dev archives) for the gory details. Summarized: OSX behaves rather oddly and Apple says this is intentional.
* Clarify the wording for threading.is_alive() to not suggest something isBrett Cannon2010-07-231-2/+2
| | | | | | "roughly" done. Closes issue 9339. Thanks Brian Brazil for the patch.
* Issue #6095: Make directory argument to os.listdir optional.Martin v. Löwis2010-07-234-14/+35
| | | | Patch by Virgil Dupras.
* Fix for issue 7895. Avoid crashing the interpreterRonald Oussoren2010-07-233-11/+71
| | | | | | when calling platform.mac_ver after calling os.fork by reading from a system configuration file instead of using OSX APIs.