Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove dead code in test_exceptions. | Brett Cannon | 2013-07-04 | 1 | -3/+0 |
| | |||||
* | Move test_import over to unittest.main(). | Brett Cannon | 2013-07-04 | 1 | -14/+2 |
| | |||||
* | Issue #15767: back out 8a0ed9f63c6e, finishing the removal of | Brett Cannon | 2013-07-04 | 7 | -22/+23 |
| | | | | ModuleNotFoundError. | ||||
* | Issue #15767: Back out 8d28d44f3a9a related to ModuleNotFoundError. | Brett Cannon | 2013-07-04 | 1 | -7/+0 |
| | |||||
* | Issue #11185: Fix test_wait4 under AIX. Patch by Sébastien Sablé. | Antoine Pitrou | 2013-07-04 | 1 | -1/+7 |
|\ | |||||
| * | Issue #11185: Fix test_wait4 under AIX. Patch by Sébastien Sablé. | Antoine Pitrou | 2013-07-04 | 1 | -1/+7 |
| | | |||||
* | | (Merge 3.3) test_time.test_monotonic(): use a longer sleep to try to make ↵ | Victor Stinner | 2013-07-03 | 1 | -2/+2 |
|\ \ | |/ | | | | | the test more reliable | ||||
| * | test_time.test_monotonic(): use a longer sleep to try to make the test more ↵ | Victor Stinner | 2013-07-03 | 1 | -2/+2 |
| | | | | | | | | reliable | ||||
* | | (Merge 3.3) test_faulthandler: skip test_read_null() on AIX | Victor Stinner | 2013-07-03 | 1 | -0/+2 |
|\ \ | |/ | | | | | | | | | | | AIX maps the first page of memory at address zero as valid, read-only. Reading NULL is not a fault on AIX. This is utilized by IBM compiler optimizations. One speculatively can indirect through a pointer which may be null without first testing if null and defer the test before using the value. | ||||
| * | test_faulthandler: skip test_read_null() on AIX | Victor Stinner | 2013-07-03 | 1 | -0/+2 |
| | | | | | | | | | | | | | | AIX maps the first page of memory at address zero as valid, read-only. Reading NULL is not a fault on AIX. This is utilized by IBM compiler optimizations. One speculatively can indirect through a pointer which may be null without first testing if null and defer the test before using the value. | ||||
* | | Issue #18339: use with self.assertRaises() to make test case more readable | Christian Heimes | 2013-07-01 | 1 | -2/+4 |
|\ \ | |/ | |||||
| * | Issue #18339: use with self.assertRaises() to make test case more readable | Christian Heimes | 2013-07-01 | 1 | -2/+4 |
| | | |||||
* | | Issue #17097: Merge. | Richard Oudkerk | 2013-07-01 | 1 | -1/+69 |
|\ \ | |/ | |||||
| * | Issue #17097: Make multiprocessing ignore EINTR. | Richard Oudkerk | 2013-07-01 | 1 | -1/+69 |
| | | |||||
* | | Merge with current default | Łukasz Langa | 2013-07-01 | 1 | -0/+7 |
|\ \ | |||||
| * \ | Issue #18339: Negative ints keys in unpickler.memo dict no longer cause a | Christian Heimes | 2013-07-01 | 1 | -0/+7 |
| |\ \ | | |/ | | | | | | | segfault inside the _pickle C extension. | ||||
| | * | Issue #18339: Negative ints keys in unpickler.memo dict no longer cause a | Christian Heimes | 2013-07-01 | 1 | -0/+7 |
| | | | | | | | | | | | | segfault inside the _pickle C extension. | ||||
* | | | Issue #18244: Adopt C3-based linearization in functools.singledispatch for ↵ | Łukasz Langa | 2013-07-01 | 1 | -21/+153 |
|/ / | | | | | | | improved ABC support | ||||
* | | Issue 18240: The HMAC module is no longer restricted to bytes and accepts | Christian Heimes | 2013-07-01 | 1 | -0/+14 |
| | | | | | | | | any bytes-like object, e.g. memoryview. Original patch by Jonas Borgström. | ||||
* | | Issue #18224: Updated test. | Vinay Sajip | 2013-06-30 | 1 | -4/+0 |
|\ \ | |/ | |||||
| * | Issue #18224: Updated test. | Vinay Sajip | 2013-06-30 | 1 | -4/+0 |
| | | |||||
| * | #18038: Use non-deprecated assert names in tests. | R David Murray | 2013-06-30 | 1 | -5/+5 |
| | | |||||
* | | Merge #18155: Regex-escape delimiter, in case it is a regex special char. | R David Murray | 2013-06-29 | 1 | -3/+39 |
|\ \ | |/ | |||||
| * | #18155: Regex-escape delimiter, in case it is a regex special char. | R David Murray | 2013-06-29 | 1 | -3/+39 |
| | | | | | | | | Patch by Vajrasky Kok, with slight modification to the tests by me. | ||||
* | | Merge with 3.3 | Terry Jan Reedy | 2013-06-29 | 1 | -0/+5 |
|\ \ | |/ | |||||
| * | Issue #18103: Update README.txt and test_idle to describe and run gui tests. | Terry Jan Reedy | 2013-06-29 | 1 | -0/+5 |
| | | |||||
* | | Issue #18322: fix some test_stat nits. | Antoine Pitrou | 2013-06-29 | 1 | -11/+7 |
| | | |||||
* | | Issue #17914: Use os.cpu_count() instead of multiprocessing.cpu_count() where | Charles-François Natali | 2013-06-28 | 1 | -6/+2 |
| | | | | | | | | applicable. | ||||
* | | Merge #14360: make encoders.encode_quopri work. | R David Murray | 2013-06-27 | 1 | -0/+29 |
|\ \ | |/ | |||||
| * | #14360: make encoders.encode_quopri work. | R David Murray | 2013-06-27 | 1 | -0/+29 |
| | | | | | | | | | | | | | | | | | | There were no tests for the encoders module. encode_base64 worked because it is the default and so got tested implicitly elsewhere, and we use encode_7or8bit internally, so that worked, too. I previously fixed encode_noop, so this fix means that everythign in the encoders module now works, hopefully correctly. Also added an explicit test for encode_base64. | ||||
| * | Merge heads | Serhiy Storchaka | 2013-06-23 | 1 | -11/+63 |
| |\ | |||||
* | | | test_gdb.py: ignore also "warning: Source file is more recent than ↵ | Victor Stinner | 2013-06-25 | 1 | -0/+1 |
| | | | | | | | | | | | | executable." pattern | ||||
* | | | Issue #17206: Fix test_cmd_line and test_faulthandler for my previous change | Victor Stinner | 2013-06-25 | 2 | -8/+17 |
| | | | | | | | | | | | | | | | (test.regrtest and test.script_helper enable faulthandler module in subprocesses). | ||||
* | | | Issue #17206: test.regrtest and test.script_helper enable faulthandler module | Victor Stinner | 2013-06-25 | 2 | -2/+3 |
| | | | | | | | | | | | | in subprocesses. | ||||
* | | | #11390: fix test failures due to readline and windows lineneds. | R David Murray | 2013-06-25 | 1 | -22/+30 |
| | | | |||||
* | | | Issue 18111: Add a default argument to min() and max() | Raymond Hettinger | 2013-06-25 | 1 | -0/+28 |
| | | | |||||
* | | | #11390: convert doctest CLI to argparse and add -o and -f options. | R David Murray | 2013-06-23 | 1 | -0/+226 |
| | | | | | | | | | | | | | | | | | | This provides a way to specify arbitrary doctest options when using the CLI interface to process test files, just as one can when calling testmod or testfile programmatically. | ||||
* | | | Merge heads | Serhiy Storchaka | 2013-06-23 | 1 | -11/+63 |
|\ \ \ | |||||
| * \ \ | Merged fix for issue #18260 from 3.3 | Łukasz Langa | 2013-06-23 | 1 | -11/+63 |
| |\ \ \ | | | |/ | | |/| | |||||
| | * | | Fixed issue #18260: configparser TypeError on source name specified as bytes | Łukasz Langa | 2013-06-23 | 1 | -11/+63 |
| | | | | |||||
* | | | | Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raise | Serhiy Storchaka | 2013-06-23 | 1 | -0/+2 |
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| | OverflowError when an argument of %c format is out of range. | ||||
| * | | Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raise | Serhiy Storchaka | 2013-06-23 | 1 | -0/+2 |
| |/ | | | | | | | OverflowError when an argument of %c format is out of range. | ||||
* | | Solaris' /dev/null is a symlink. The device test now uses stat instead of ↵ | Christian Heimes | 2013-06-23 | 1 | -4/+7 |
|\ \ | |/ | | | | | | | | | lstat to compensate for symlinks. | ||||
| * | Solaris' /dev/null is a symlink. The device test now uses stat instead of ↵ | Christian Heimes | 2013-06-23 | 1 | -4/+7 |
| | | | | | | | | | | | | lstat to compensate for symlinks. | ||||
* | | (Merge 3.3) Issue #18137: Detect integer overflow on precision in | Victor Stinner | 2013-06-23 | 1 | -0/+17 |
|\ \ | |/ | | | | | float.__format__() and complex.__format__(). | ||||
| * | Issue #18137: Detect integer overflow on precision in float.__format__() and | Victor Stinner | 2013-06-23 | 1 | -0/+17 |
| | | | | | | | | complex.__format__(). | ||||
* | | Issue #11016: Add C implementation of the stat module as _stat | Christian Heimes | 2013-06-22 | 1 | -20/+37 |
| | | |||||
* | | Merge from 3.3 | Andrew Kuchling | 2013-06-22 | 1 | -0/+9 |
|\ \ | |/ | |||||
| * | #18113: avoid segfault if Py_XDECREF triggers code that calls ↵ | Andrew Kuchling | 2013-06-22 | 1 | -0/+9 |
| | | | | | | | | | | | | set_panel_userptr again Problem noted & original patch by Serhiy Storchaka; I tweaked the patch a bit. | ||||
* | | BSD: block devices are gone | Christian Heimes | 2013-06-22 | 1 | -1/+1 |
|\ \ | |/ | | | | | http://www.freebsd.org/doc/en/books/arch-handbook/driverbasics-block.html |