summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Fixes Issue #15507: test_subprocess's test_send_signal could fail if the testGregory P. Smith2013-08-291-10/+16
|\
| * Fixes issue #15507: test_subprocess's test_send_signal could fail if the testGregory P. Smith2013-08-291-10/+16
| * Merge.Charles-François Natali2013-08-292-5/+12
| |\
* | \ Merge.Charles-François Natali2013-08-292-5/+12
|\ \ \
| * \ \ Issue #18643: Fix some test_socket failures due to large default socket bufferCharles-François Natali2013-08-292-5/+12
| |\ \ \ | | | |/ | | |/|
| | * | Issue #18643: Fix some test_socket failures due to large default socket bufferCharles-François Natali2013-08-292-5/+12
* | | | Issue #8713: Print dangling processes/threads, if any.Richard Oudkerk2013-08-291-2/+17
* | | | Issue #8713: Cleanup before saving process._dangling.Richard Oudkerk2013-08-291-2/+6
* | | | Issue #8713: Test should not print message about start method.Richard Oudkerk2013-08-291-1/+0
* | | | Issue #17974: Switch unittest from using getopt to using argparse.Serhiy Storchaka2013-08-294-177/+168
* | | | Issue #16799: Switched from getopt to argparse style in regrtest's argumentSerhiy Storchaka2013-08-292-359/+496
* | | | Issue #18743: Fix references to non-existant "StringIO" moduleSerhiy Storchaka2013-08-296-23/+12
|\ \ \ \ | | |_|/ | |/| |
| * | | Issue #18743: Fix references to non-existant "StringIO" moduleSerhiy Storchaka2013-08-296-20/+12
* | | | Fix tests for #11798Andrew Svetlov2013-08-282-4/+10
* | | | Issue #11798: TestSuite now drops references to own tests after execution.Andrew Svetlov2013-08-283-7/+56
* | | | Issue #18786: Don't reinstall old SIGUSR1 handler prematurely.Richard Oudkerk2013-08-281-5/+7
* | | | (Merge 3.3) Fix @requires_freebsd_version and @requires_linux_versionVictor Stinner2013-08-281-0/+2
|\ \ \ \ | |/ / /
| * | | Fix @requires_freebsd_version and @requires_linux_version decorators ofVictor Stinner2013-08-281-0/+2
* | | | Fix test_socket.test_SOCK_CLOEXEC(), the test was wrongVictor Stinner2013-08-281-1/+1
* | | | test_posix.test_pipe2() now checks that the O_NONBLOCK flag is setVictor Stinner2013-08-281-2/+4
* | | | Issue #18865: remove unused import from multiprocessing.util.spawnv_passfds()Victor Stinner2013-08-281-1/+1
* | | | Issue #18865: PEP 446 makes multiprocessing.util.pipe() unnecessary.Richard Oudkerk2013-08-282-21/+1
* | | | Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-2721-82/+260
* | | | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-2714-37/+26
|\ \ \ \ | |/ / / | | / / | |/ / |/| |
| * | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-2714-37/+26
| |/
* | Close #11619: The parser and the import machinery do not encode UnicodeVictor Stinner2013-08-261-1/+9
* | Remove the obsolete XMLParser._start/_start_list duality.Eli Bendersky2013-08-261-26/+12
* | #18833: merge with 3.3.Ezio Melotti2013-08-251-0/+8
|\ \ | |/
| * #18833: add a test for test_telnetlib. Patch by Alex Volkov.Ezio Melotti2013-08-251-0/+8
* | Issue #18808: Non-daemon threads are now automatically joined when a sub-inte...Antoine Pitrou2013-08-251-0/+48
* | Merge.Charles-François Natali2013-08-251-0/+17
|\ \ | |/
| * Merge.Charles-François Natali2013-08-251-0/+17
| |\
| | * Issue #18763: subprocess: The file descriptors are now closed after calling theCharles-François Natali2013-08-251-0/+17
* | | Issue #18817: Fix a resource warning in Lib/aifc.py demo. Patch bySerhiy Storchaka2013-08-251-21/+19
|\ \ \ | |/ /
| * | Issue #18817: Fix a resource warning in Lib/aifc.py demo.Serhiy Storchaka2013-08-251-19/+23
* | | Merge #16611: BaseCookie now parses 'secure' and 'httponly' flags.R David Murray2013-08-252-11/+58
|\ \ \ | |/ /
| * | #16611: BaseCookie now parses 'secure' and 'httponly' flags.R David Murray2013-08-252-11/+58
* | | Issue #18709: Fix issue with IPv6 address in subjectAltName on Mac OS X TigerChristian Heimes2013-08-251-7/+15
|\ \ \ | |/ /
| * | Issue #18709: Fix issue with IPv6 address in subjectAltName on Mac OS X TigerChristian Heimes2013-08-251-7/+15
| |/
* | Closes #18807: pyvenv now takes a --copies argument allowing copies instead o...Vinay Sajip2013-08-241-5/+11
* | Issue #18756: make test_urandom_failure more robust by executing its code in ...Antoine Pitrou2013-08-241-10/+19
|\ \ | |/
| * Issue #18756: make test_urandom_failure more robust by executing its code in ...Antoine Pitrou2013-08-241-10/+19
* | Close #18538: ``python -m dis`` now uses argparse.Nick Coghlan2013-08-241-19/+8
* | (Merge 3.3) test_socket: cancel scheduled alarm on test failureVictor Stinner2013-08-241-0/+1
|\ \ | |/
| * test_socket: cancel scheduled alarm on test failureVictor Stinner2013-08-241-0/+1
* | remove support for compiling on systems without getcwd()Benjamin Peterson2013-08-241-33/+31
* | Issue #17741: use composition, rather than inheritance, for xml.etree.iterpar...Antoine Pitrou2013-08-231-6/+8
* | #18798: merge typo fix from 3.3 and also use two unused variables.Ezio Melotti2013-08-231-1/+5
|\ \ | |/
| * #18798: fix typo in test_fcntl. Patch by Vajrasky Kok.Ezio Melotti2013-08-231-1/+1
* | #18796: improve documentation of the file argument of dis.show_code. Initial...Ezio Melotti2013-08-231-1/+4