summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* #16135: Removal of OS/2 support (Remove OS2 and OS/2 references)Jesus Cea2012-10-052-26/+5
|
* Issue #16089: Allow ElementTree.TreeBuilder to work again with a non-Element ↵Antoine Pitrou2012-10-041-2/+42
|\ | | | | | | element_factory (fixes a regression in SimpleTAL).
| * Issue #16089: Allow ElementTree.TreeBuilder to work again with a non-Element ↵Antoine Pitrou2012-10-041-2/+42
| | | | | | | | element_factory (fixes a regression in SimpleTAL).
* | MERGE: Closes #16126: PyErr_Format format mismatch in _testcapimodule.cJesus Cea2012-10-041-0/+11
|\ \ | |/
| * Closes #16126: PyErr_Format format mismatch in _testcapimodule.cJesus Cea2012-10-041-0/+11
| |
* | Closes #15488: Closed files keep their buffer aliveJesus Cea2012-10-041-0/+8
| |
* | Remove unnecessary [].Ezio Melotti2012-10-021-9/+9
| |
* | Issue #15452: Added verify option for logging configuration socket listener.Vinay Sajip2012-10-021-5/+71
| |
* | Issue #15609: Optimize str%args for integer argumentVictor Stinner2012-10-011-0/+16
| | | | | | | | | | | | | | | | | | | | - Use _PyLong_FormatWriter() instead of formatlong() when possible, to avoid a temporary buffer - Enable the fast path when width is smaller or equals to the length, and when the precision is bigger or equals to the length - Add unit tests! - formatlong() uses PyUnicode_Resize() instead of _PyUnicode_FromASCII() to resize the output string
* | Merge 3.3.Stefan Krah2012-10-011-3/+1
|\ \ | |/
| * Issue #15599: Increase the switch interval. Several systems cannot handleStefan Krah2012-10-011-3/+1
| | | | | | | | gil_interval == 1 in extreme situations.
* | utilize subprocess.DEVNULLPhilip Jenvey2012-10-011-22/+20
| |
* | Issue #15533: Merge update from 3.3.Chris Jerdonek2012-09-301-0/+2
|\ \ | |/
| * Issue #15533: Merge update from 3.2.Chris Jerdonek2012-09-301-0/+2
| |\
| | * Issue #15533: Skip test_cwd_with_relative_*() tests on Windows pending ↵Chris Jerdonek2012-09-301-0/+2
| | | | | | | | | | | | resolution of issue.
* | | Issue #15533: Merge fix from 3.3.Chris Jerdonek2012-09-301-29/+94
|\ \ \ | |/ /
| * | Issue #15533: Merge fix from 3.2.Chris Jerdonek2012-09-301-29/+94
| |\ \ | | |/
| | * Issue #15533: Clarify docs and add tests for subprocess.Popen()'s cwd argument.Chris Jerdonek2012-09-301-29/+94
| | |
* | | Speed up test_httpservers by avoiding a one-second cleanup wait after each ↵Antoine Pitrou2012-09-291-0/+1
|\ \ \ | |/ / | | | | | | test case.
| * | Speed up test_httpservers by avoiding a one-second cleanup wait after each ↵Antoine Pitrou2012-09-291-0/+1
| |\ \ | | |/ | | | | | | test case.
| | * Speed up test_httpservers by avoiding a one-second cleanup wait after each ↵Antoine Pitrou2012-09-291-0/+1
| | | | | | | | | | | | test case.
* | | Remove the new trivial pty.spawn() test as it hangs on many buildbots.Gregory P. Smith2012-09-291-6/+0
| | |
* | | pty.spawn() now returns the child process status as returned by os.waitpid().Gregory P. Smith2012-09-291-0/+6
| | | | | | | | | | | | Addresses the remaining feature request from issue #2489.
* | | Fixes issue #15756: subprocess.poll() now properly handles errno.ECHILD toGregory P. Smith2012-09-291-1/+10
|\ \ \ | |/ / | | | | | | | | | return a returncode of 0 when the child has already exited or cannot be waited on.
| * | Fixes issue #15756: subprocess.poll() now properly handles errno.ECHILDGregory P. Smith2012-09-291-1/+10
| |\ \ | | |/ | | | | | | | | | to return a returncode of 0 when the child has already exited or cannot be waited on.
| | * Fixes issue #15756: subprocess.poll() now properly handles errno.ECHILDGregory P. Smith2012-09-291-1/+10
| | | | | | | | | | | | | | | to return a returncode of 0 when the child has already exited or cannot be waited on.
| * | merge mostly from defaultBenjamin Peterson2012-09-2934-82/+740
| |\ \
* | | | upgrade to UCD 6.2Benjamin Peterson2012-09-291-1/+1
| | | |
* | | | merge with 3.3Georg Brandl2012-09-291-1/+1
|\ \ \ \ | |/ / / | | / / | |/ / |/| |
| * | Fix test_sys.test_implementation for final releases.v3.3.0Georg Brandl2012-09-291-1/+1
| | |
| * | Closes #15973: fix a segmentation fault when comparing timezone objects.Georg Brandl2012-09-221-0/+2
| | |
| * | Closes #15925: fix regression in parsedate() and parsedate_tz() that should ↵Georg Brandl2012-09-221-2/+11
| | | | | | | | | | | | return None if unable to parse the argument.
| * | Closes #15969: rename new API to have consistent names in the faulthandler ↵Georg Brandl2012-09-221-19/+19
| | | | | | | | | | | | module.
| * | Issue #15882: Change _decimal to accept any coefficient tuple whenStefan Krah2012-09-101-7/+10
| | | | | | | | | | | | | | | | | | constructing infinities. This is done for backwards compatibility with decimal.py: Infinity coefficients are undefined in _decimal (in accordance with the specification).
| * | Issue #13992: The trashcan mechanism is now thread-safe. This eliminatesAntoine Pitrou2012-09-051-0/+69
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sporadic crashes in multi-thread programs when several long deallocator chains ran concurrently and involved subclasses of built-in container types. Because of this change, a couple extension modules compiled for 3.2.4 (those which use the trashcan mechanism, despite it being undocumented) will not be loadable by 3.2.3 and earlier. However, extension modules compiled for 3.2.3 and earlier will be loadable by 3.2.4.
| * | Fix bug with argparse.Parser.parse_args(*args)Zbigniew Jędrzejewski-Szmek2012-09-021-0/+18
| | |
| * | Issue #15828: Don't try to close a file if imp.find_module() doesn'tBrett Cannon2012-08-311-1/+3
| | | | | | | | | | | | return one.
| * | Issue #15828: Restore support for C extension modules in imp.load_module()Nick Coghlan2012-08-312-19/+29
| | |
| * | Issue #15781: Fix two small race conditions in import's module locking.Antoine Pitrou2012-08-271-1/+11
| | |
| * | Issue #15784: Modify OSError.__str__() to better distinguish betweenRichard Oudkerk2012-08-281-2/+2
| | | | | | | | | | | | errno error numbers and Windows error numbers.
| * | Issue #15785: Modify window.get_wch() API of the curses module: return aVictor Stinner2012-08-281-7/+5
| | | | | | | | | | | | | | | | | | character for most keys, and an integer for special keys, instead of always returning an integer. So it is now possible to distinguish special keys like keypad keys.
* | | Closes #16080: The decorator ignores failed attempts to set the requiredStefan Krah2012-09-281-0/+6
| | | | | | | | | | | | locale, so an additional check is required.
* | | Issue #16080: Use run_with_locale() decorator to reset the locale properly.Stefan Krah2012-09-281-7/+3
| | |
* | | renmae test method to avoid conflict (#16056)Benjamin Peterson2012-09-271-1/+1
| | |
* | | Issue #16060: Fix a double DECREF in int() implementation. Thanks Serhiy ↵Mark Dickinson2012-09-271-0/+12
| | | | | | | | | | | | Storchaka.
* | | #1087: use proper skips in test_os.Ezio Melotti2012-09-261-13/+13
| | |
* | | #15222: Merge 3.2Petri Lehtinen2012-09-251-15/+38
|\ \ \ | | |/ | |/|
| * | #15222: Insert blank line after each message in mbox mailboxesPetri Lehtinen2012-09-251-0/+23
| | |
| * | #15222: test_mailbox: End message template in a newlinePetri Lehtinen2012-09-251-15/+15
| | |
* | | raise a ValueError instead of an AssertionError when pool is an invalid stateBenjamin Peterson2012-09-251-1/+2
| | |