Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #15767: Revert 3a50025f1900 for ModuleNotFoundError | Brett Cannon | 2013-07-04 | 10 | -842/+807 |
| | |||||
* | Issue #15767: Back out 8d28d44f3a9a related to ModuleNotFoundError. | Brett Cannon | 2013-07-04 | 1 | -7/+0 |
| | |||||
* | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) | Brett Cannon | 2013-07-04 | 83 | -144/+158 |
| | |||||
* | Consolidate tests section. | Antoine Pitrou | 2013-07-04 | 1 | -5/+2 |
| | |||||
* | Issue #11185: Fix test_wait4 under AIX. Patch by Sébastien Sablé. | Antoine Pitrou | 2013-07-04 | 2 | -2/+9 |
|\ | |||||
| * | Issue #11185: Fix test_wait4 under AIX. Patch by Sébastien Sablé. | Antoine Pitrou | 2013-07-04 | 2 | -1/+9 |
| | | |||||
* | | (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. | ||||
* | | #18312: merge from 3.3. | Eric V. Smith | 2013-07-02 | 1 | -5/+5 |
|\ \ | |/ | |||||
| * | Closes #18312: 'make distclean' no longer deletes files in dot-directories. | Eric V. Smith | 2013-07-02 | 1 | -5/+5 |
| | | |||||
* | | Issue #17261: Ensure multiprocessing's proxies use proper address. | Richard Oudkerk | 2013-07-02 | 2 | -0/+3 |
|\ \ | |/ | |||||
| * | Issue #17261: Ensure multiprocessing's proxies use proper address. | Richard Oudkerk | 2013-07-02 | 2 | -0/+3 |
| | | |||||
* | | Issue #14206: Clarify docs for Queue.join_cancel_thread(). | Richard Oudkerk | 2013-07-02 | 1 | -0/+7 |
|\ \ | |/ | |||||
| * | Issue #14206: Clarify docs for Queue.join_cancel_thread(). | Richard Oudkerk | 2013-07-02 | 1 | -0/+7 |
| | | |||||
* | | Issue #17273: Clarify that pool methods can only be used by parent process. | Richard Oudkerk | 2013-07-02 | 1 | -0/+6 |
|\ \ | |/ | |||||
| * | Issue #17273: Clarify that pool methods can only be used by parent process. | Richard Oudkerk | 2013-07-02 | 1 | -0/+6 |
| | | |||||
* | | (Merge 3.3) Issue #18343: faulthandler.register() now keeps the previous signal | Victor Stinner | 2013-07-01 | 2 | -1/+6 |
|\ \ | |/ | | | | | | | handler when the function is called twice, so faulthandler.unregister() restores correctly the original signal handler. | ||||
| * | Issue #18343: faulthandler.register() now keeps the previous signal handler | Victor Stinner | 2013-07-01 | 2 | -1/+6 |
| | | | | | | | | | | when the function is called twice, so faulthandler.unregister() restores correctly the original signal handler. | ||||
* | | Issue #18328: Reorder ops in PyThreadState_Delete*() functions. Now the | Christian Heimes | 2013-07-01 | 2 | -2/+5 |
|\ \ | |/ | | | | | | | | | tstate is first removed from TLS and then deallocated. CID 1019639 (#1 of 1): Use after free (USE_AFTER_FREE) use_after_free: Using freed pointer tstate. | ||||
| * | Issue #18328: Reorder ops in PyThreadState_Delete*() functions. Now the | Christian Heimes | 2013-07-01 | 2 | -2/+5 |
| | | | | | | | | | | | | tstate is first removed from TLS and then deallocated. CID 1019639 (#1 of 1): Use after free (USE_AFTER_FREE) use_after_free: Using freed pointer tstate. | ||||
* | | 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 | 3 | -4/+86 |
|\ \ | |/ | |||||
| * | Issue #17097: Make multiprocessing ignore EINTR. | Richard Oudkerk | 2013-07-01 | 3 | -4/+86 |
| | | |||||
* | | Merge with current default | Łukasz Langa | 2013-07-01 | 3 | -0/+15 |
|\ \ | |||||
| * \ | Singular form just like the other error message. | Christian Heimes | 2013-07-01 | 1 | -1/+1 |
| |\ \ | | |/ | |||||
| | * | Singular form just like the other error message. | Christian Heimes | 2013-07-01 | 1 | -1/+1 |
| | | | |||||
| * | | Issue #18339: Negative ints keys in unpickler.memo dict no longer cause a | Christian Heimes | 2013-07-01 | 3 | -0/+15 |
| |\ \ | | |/ | | | | | | | segfault inside the _pickle C extension. | ||||
| | * | Issue #18339: Negative ints keys in unpickler.memo dict no longer cause a | Christian Heimes | 2013-07-01 | 3 | -0/+15 |
| | | | | | | | | | | | | segfault inside the _pickle C extension. | ||||
* | | | Issue #18244: Adopt C3-based linearization in functools.singledispatch for ↵ | Łukasz Langa | 2013-07-01 | 3 | -64/+289 |
|/ / | | | | | | | improved ABC support | ||||
* | | Issue 18240: The HMAC module is no longer restricted to bytes and accepts | Christian Heimes | 2013-07-01 | 5 | -11/+33 |
| | | | | | | | | any bytes-like object, e.g. memoryview. Original patch by Jonas Borgström. | ||||
* | | (merge) Issue #7136: In the Idle File menu, "New Window" is renamed "New File". | Terry Jan Reedy | 2013-07-01 | 4 | -4/+7 |
|\ \ | |/ | | | | | Patch by Tal Einat, Roget Serwy, and Todd Rovito. | ||||
| * | Issue #7136: In the Idle File menu, "New Window" is renamed "New File". | Terry Jan Reedy | 2013-07-01 | 4 | -4/+7 |
| | | | | | | | | Patch by Tal Einat, Roget Serwy, and Todd Rovito. | ||||
* | | Merge with 3.3 | Terry Jan Reedy | 2013-06-30 | 2 | -2/+39 |
|\ \ | |/ | |||||
| * | Issue #18189: add test_delegator for Idle Delegator class. | Terry Jan Reedy | 2013-06-30 | 2 | -2/+39 |
| | | | | | | | | Also change private dict used as a set to a set. | ||||
* | | Issue #18224: Updated test. | Vinay Sajip | 2013-06-30 | 1 | -4/+0 |
|\ \ | |/ | |||||
| * | Issue #18224: Updated test. | Vinay Sajip | 2013-06-30 | 1 | -4/+0 |
| | | |||||
* | | Closes #18224: Removed pydoc script from created venv, as it causes problems ↵ | Vinay Sajip | 2013-06-30 | 3 | -9/+3 |
|\ \ | |/ | | | | | on Windows and adds no value over and above python -m pydoc ... | ||||
| * | Issue #18224: Removed pydoc script from created venv, as it causes problems ↵ | Vinay Sajip | 2013-06-30 | 3 | -9/+3 |
| | | | | | | | | on Windows and adds no value over and above python -m pydoc ... | ||||
* | | Merge with 3.3 | Terry Jan Reedy | 2013-06-30 | 1 | -8/+0 |
|\ \ | |/ | |||||
| * | Issue 18189: remove unused methods in idlelib.Delegator.Delegator. | Terry Jan Reedy | 2013-06-30 | 1 | -8/+0 |
| | | | | | | | | | | Idle code already uses x.delegate instead of x.getdelegate(). The printed report must have been for testing. | ||||
* | | Null merge #18038: Use non-deprecated assert names in tests. | R David Murray | 2013-06-30 | 0 | -0/+0 |
|\ \ | |/ | | | | | Brett already fixed this in 3.4 in 4f7c25ab2ed2. | ||||
| * | #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 | 3 | -6/+47 |
|\ \ | |/ | |||||
| * | #18155: Regex-escape delimiter, in case it is a regex special char. | R David Murray | 2013-06-29 | 4 | -6/+48 |
| | | | | | | | | Patch by Vajrasky Kok, with slight modification to the tests by me. | ||||
* | | Merge with 3.3 | Terry Jan Reedy | 2013-06-29 | 2 | -28/+70 |
|\ \ | |/ | |||||
| * | Issue #18103: Update README.txt and test_idle to describe and run gui tests. | Terry Jan Reedy | 2013-06-29 | 2 | -28/+70 |
| | | |||||
* | | Fix segfault in pyexpat.c caused by 84375 | Christian Heimes | 2013-06-29 | 1 | -1/+1 |
| | | | | | | | | u can be NULL, use XDECREF |