summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix transient refleak in test_popen2.Florent Xicluna2010-03-041-1/+7
|
* Issue #1054943: Fix unicodedata.normalize('NFC', text) for the Public ReviewVictor Stinner2010-03-043-1/+9
| | | | | | Issue #29. PR #29 was released in february 2004!
* set svn:executable on all regen scriptsBenjamin Peterson2010-03-047-0/+0
|
* Issue #7494: fix a crash in _lsprof (cProfile) after clearing the profiler,Victor Stinner2010-03-042-1/+9
| | | | reset also the pointer to the current pointer context.
* Issue #7544: Preallocate thread memory before creating the thread to avoid aVictor Stinner2010-03-034-7/+38
| | | | fatal error in low memory condition.
* Issue #3299: fix curses.panel.new_panel() error handler, replace PyObject_DEL()Victor Stinner2010-03-031-5/+8
| | | | | | by Py_DECREF() to avoid a crash in pydebug mode. Use po->wo==NULL to detect than the panel is in the lop list or not.
* rephraseBenjamin Peterson2010-03-031-1/+1
|
* Issue #7232: Add support for the context manager protocolLars Gustäbel2010-03-034-0/+92
| | | | to the TarFile class.
* Revert a nonexistent docstring typo, r42805.Florent Xicluna2010-03-031-1/+1
|
* fix Sphinx warningsBenjamin Peterson2010-03-031-3/+4
|
* edit for styleBenjamin Peterson2010-03-031-249/+220
|
* Issue #3299: fix thread.allocate_lock() error handler, replace PyObject_Del()Victor Stinner2010-03-031-8/+9
| | | | by Py_DECREF() to fix a crash in pydebug mode.
* Fix wording.Florent Xicluna2010-03-021-2/+2
|
* plug ref leaksBenjamin Peterson2010-03-021-0/+4
|
* Issue #7820: The parser tokenizer restores all bytes in the right if the BOMVictor Stinner2010-03-023-22/+46
| | | | | | check fails. Fix an assertion in pydebug mode.
* remove cross-version compatibility codeBenjamin Peterson2010-03-022-50/+9
|
* remove code to avoid BaseException.message bugBenjamin Peterson2010-03-022-15/+0
|
* Issue #2973: Fix gcc warning on the 2nd argument of ASN1_item_d2i() andVictor Stinner2010-03-021-0/+5
| | | | | method->d2i(): OpenSSL API changed in OpenSSL 0.9.6m. Patch written by Daniel Black.
* Test test_pep277 is only relevant for Unicode-friendly filesystems.Florent Xicluna2010-03-022-5/+8
|
* convert deprecated fail* methods to assert* variantsBenjamin Peterson2010-03-021-16/+16
|
* use test_main() in __main__ sectionBenjamin Peterson2010-03-021-1/+1
|
* prevent warning filter adjustment from altering other testsBenjamin Peterson2010-03-021-24/+23
|
* enable running of argparse tests and fix two that failed in the new environmentBenjamin Peterson2010-03-021-4/+11
|
* Add some x-refs.Georg Brandl2010-03-021-209/+206
|
* remove another coding cookieBenjamin Peterson2010-03-021-3/+1
|
* set svn:eol-styleBenjamin Peterson2010-03-023-8315/+8315
|
* remove coding cookie as mandated by PEP 8Benjamin Peterson2010-03-021-3/+1
|
* Tentatively enable test_pep277 on all platforms.Florent Xicluna2010-03-022-3/+9
|
* Refactor test_dict using assertRaises.Florent Xicluna2010-03-021-68/+47
|
* Link correction in documentation.Michael Foord2010-03-021-1/+1
|
* Add an itemAndrew M. Kuchling2010-03-021-0/+10
|
* Initial commit of the argparse library, based on argparse 1.1.Steven Bethard2010-03-028-6/+8326
| | | | | Docs still need some updating to make getopt and optparse match the wording promised in the PEP. There are also probably a number of :class:ArgumentParser etc. links that could be added to the argparse documentation.
* remove CVS idBenjamin Peterson2010-03-011-2/+0
|
* Manually copy patch for bug 7250 from the release26-maint branch. I suckBarry Warsaw2010-03-012-0/+7
| | | | | because I did this in the wrong order and couldn't smack svnmerge into submission.
* #7808: Fix reference leaks in _bsddb and related tests.Florent Xicluna2010-03-014-4/+20
|
* #7637: avoid repeated-concatenation antipattern in exampleAndrew M. Kuchling2010-03-011-3/+3
|
* #7191: describe more details of wbits parameterAndrew M. Kuchling2010-03-011-2/+6
|
* #7637: update discussion of minidom.unlink() and garbage collectionAndrew M. Kuchling2010-03-011-16/+6
|
* Issue 3892 again. The bsddb3 replication test still fails randomly.R. David Murray2010-03-011-18/+20
| | | | | | | Since this module is unmaintained in the library and gone in py3k, this patch skips the remainder of the replication test if a second timeout occurs, as it randomly does. This should improve buildbot stability.
* Fix test to be skipped on windows.Gregory P. Smith2010-03-011-4/+2
|
* Fixes issue #7999: os.setreuid() and os.setregid() would refuse to acceptGregory P. Smith2010-03-013-6/+25
| | | | a -1 parameter on some platforms such as OS X.
* Adds c_ssize_t to ctypes. issue 6729.Gregory P. Smith2010-03-014-1/+20
|
* Cleanup the test added in r78517 based on Ezio Melotti's feedback.Gregory P. Smith2010-03-011-8/+4
|
* Fix the new test on windows (skip it, its posix only)Gregory P. Smith2010-03-011-0/+1
|
* Fix for r78527. It left out updating forkpty.Gregory P. Smith2010-03-011-4/+7
|
* Adds the hashlib.algorithms attribute. See issue7418.Gregory P. Smith2010-03-013-1/+17
|
* Issue #7242: On Solaris 9 and earlier calling os.fork() from within aGregory P. Smith2010-03-014-15/+72
| | | | | thread could raise an incorrect RuntimeError about not holding the import lock. The import lock is now reinitialized after fork.
* Issue #1068268: The subprocess module now handles EINTR in internalGregory P. Smith2010-03-013-4/+38
| | | | os.waitpid and os.read system calls where appropriate.
* #8030: more docstring fix for builtin types.Ezio Melotti2010-02-283-7/+7
|
* Issue #7481: When a threading.Thread failed to start it would leave theGregory P. Smith2010-02-283-1/+28
| | | | instance stuck in initial state and present in threading.enumerate().