Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | merge 3.4 | Benjamin Peterson | 2014-12-24 | 1 | -2/+2 |
|\ | |||||
| * | update correct French examples (#23109) | Benjamin Peterson | 2014-12-24 | 1 | -2/+2 |
| | | |||||
* | | merge 3.4 (#23109) | Benjamin Peterson | 2014-12-24 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | improve incorrect French (#23109) | Benjamin Peterson | 2014-12-24 | 1 | -2/+2 |
| | | | | | | | | Following suggestions from Clément. | ||||
* | | merge 3.4 (#23110) | Benjamin Peterson | 2014-12-24 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | doucment that Py_SetPath copies its argument (closes #23110) | Benjamin Peterson | 2014-12-24 | 1 | -0/+3 |
| | | |||||
* | | Issue #21793: Added http.HTTPStatus enums (i.e. HTTPStatus.OK, | Serhiy Storchaka | 2014-12-23 | 6 | -216/+353 |
| | | | | | | | | HTTPStatus.NOT_FOUND). Patch by Demian Brecht. | ||||
* | | Merge pip and setuptools upgrade | Donald Stufft | 2014-12-23 | 4 | -2/+2 |
|\ \ | |/ | |||||
| * | Upgrade pip to 6.0.2 and setuptools to 8.2.1 | Donald Stufft | 2014-12-23 | 4 | -2/+2 |
| | | |||||
* | | Merge 3.4 (asyncio) | Victor Stinner | 2014-12-22 | 1 | -3/+7 |
|\ \ | |/ | |||||
| * | asyncio doc: update also Queue docstrings | Victor Stinner | 2014-12-22 | 1 | -3/+7 |
| | | |||||
* | | Merge 3.4 (asyncio doc) | Victor Stinner | 2014-12-22 | 1 | -8/+13 |
|\ \ | |/ | |||||
| * | asyncio doc: Fix doc of get and put methods of Queue | Victor Stinner | 2014-12-22 | 1 | -8/+13 |
| | | |||||
* | | merge 3.4 (#23093) | Benjamin Peterson | 2014-12-22 | 5 | -42/+61 |
|\ \ | |/ | |||||
| * | allow more operations to work on detached streams (closes #23093) | Benjamin Peterson | 2014-12-22 | 5 | -42/+61 |
| | | | | | | | | Patch by Martin Panter. | ||||
* | | Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(), | Victor Stinner | 2014-12-21 | 6 | -6/+50 |
| | | | | | | | | instead of reading /dev/urandom, to get pseudo-random bytes. | ||||
* | | Issue #19104: pprint now produces evaluable output for wrapped strings. | Serhiy Storchaka | 2014-12-20 | 3 | -36/+47 |
|\ \ | |/ | |||||
| * | Issue #19104: pprint now produces evaluable output for wrapped strings. | Serhiy Storchaka | 2014-12-20 | 3 | -36/+47 |
| | | |||||
* | | Null merge | Serhiy Storchaka | 2014-12-20 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Issue #23071: "namereplace_errors" was added only in 3.5. | Serhiy Storchaka | 2014-12-20 | 1 | -1/+0 |
| | | |||||
* | | Issue #23071: Added missing names to codecs.__all__. Patch by Martin Panter. | Serhiy Storchaka | 2014-12-20 | 3 | -0/+31 |
|\ \ | |/ | |||||
| * | Issue #23071: Added missing names to codecs.__all__. Patch by Martin Panter. | Serhiy Storchaka | 2014-12-20 | 3 | -1/+32 |
| | | |||||
* | | null merge. | Barry Warsaw | 2014-12-19 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Fix typo. | Barry Warsaw | 2014-12-19 | 1 | -1/+1 |
| |\ | |||||
* | \ | Trunk merge. | Barry Warsaw | 2014-12-19 | 2 | -2/+11 |
|\ \ \ | |||||
| * \ \ | Merge 3.4 (asyncio) | Victor Stinner | 2014-12-19 | 2 | -2/+11 |
| |\ \ \ | | |/ / | |||||
| | * | | asyncio: IocpProactor.wait_for_handle() test now also checks the result of the | Victor Stinner | 2014-12-19 | 2 | -2/+11 |
| | | | | | | | | | | | | | | | | future | ||||
* | | | | Fixed typo. | Barry Warsaw | 2014-12-19 | 1 | -1/+1 |
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| | |||||
| * | | Fix typo. | Barry Warsaw | 2014-12-19 | 1 | -1/+1 |
| |/ | |||||
* | | Merge 3.4 (asyncio) | Victor Stinner | 2014-12-18 | 3 | -2/+9 |
|\ \ | |/ | |||||
| * | asyncio: sync with Tulip | Victor Stinner | 2014-12-18 | 3 | -2/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix a race condition in BaseSubprocessTransport._try_finish(). If the process exited before the _post_init() method was called, scheduling the call to _call_connection_lost() with call_soon() is wrong: connection_made() must be called before connection_lost(). Reuse the BaseSubprocessTransport._call() method to schedule the call to _call_connection_lost() to ensure that connection_made() and connection_lost() are called in the correct order. * Add repr(PipeHandle) * Fix typo | ||||
* | | Merge 3.4 (asyncio) | Victor Stinner | 2014-12-18 | 6 | -16/+37 |
|\ \ | |/ | |||||
| * | asyncio: sync with Tulip | Victor Stinner | 2014-12-18 | 6 | -16/+37 |
| | | |||||
* | | Merge 3.4 (asyncio) | Victor Stinner | 2014-12-18 | 3 | -6/+6 |
|\ \ | |/ | |||||
| * | Issue #23074: asyncio.get_event_loop() now raises an exception if the thread | Victor Stinner | 2014-12-18 | 3 | -6/+6 |
| | | | | | | | | has no event loop even if assertions are disabled. | ||||
* | | Issue #22733: Added NEWS item | Steve Dower | 2014-12-17 | 1 | -0/+3 |
| | | |||||
* | | Issue #23060: Suppresses a multiprocessing assert that fails incorrectly | Steve Dower | 2014-12-17 | 1 | -1/+3 |
| | | | | | | | | This is to keep buildbots running while we figure out the best long-term fix. | ||||
* | | Issue #22733: MSVC ffi_prep_args doesn't handle 64-bit arguments properly | Steve Dower | 2014-12-17 | 1 | -9/+28 |
| | | |||||
* | | Issue #23070: Fix a comment in the tutorial. | Berker Peksag | 2014-12-17 | 1 | -1/+1 |
|\ \ | |/ | | | | | | | | | "Python" has 6 characters, not 7. Reported by Ross Burnett. | ||||
| * | Issue #23070: Fix a comment in the tutorial. | Berker Peksag | 2014-12-17 | 1 | -1/+1 |
| | | | | | | | | | | | | "Python" has 6 characters, not 7. Reported by Ross Burnett. | ||||
* | | merge | Raymond Hettinger | 2014-12-17 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #23049: Pure python equivalent shouldn't imply more exactitude than ↵ | Raymond Hettinger | 2014-12-17 | 1 | -1/+1 |
| | | | | | | | | is really there. | ||||
* | | Issue #23009: Skip test_selectors.test_empty_select() on Windows | Victor Stinner | 2014-12-17 | 1 | -0/+3 |
| | | |||||
* | | Issue #22783: Pickling now uses the NEWOBJ opcode instead of the NEWOBJ_EX | Serhiy Storchaka | 2014-12-16 | 5 | -140/+149 |
| | | | | | | | | opcode if possible. | ||||
* | | Issue #15513: Added a __sizeof__ implementation for pickle classes. | Serhiy Storchaka | 2014-12-16 | 4 | -4/+184 |
|\ \ | |/ | |||||
| * | Issue #15513: Added a __sizeof__ implementation for pickle classes. | Serhiy Storchaka | 2014-12-16 | 4 | -4/+184 |
| | | |||||
* | | Issue #19858: pickletools.optimize() now aware of the MEMOIZE opcode, can | Serhiy Storchaka | 2014-12-16 | 3 | -24/+92 |
|\ \ | |/ | | | | | | | produce more compact result and no longer produces invalid output if input data contains MEMOIZE opcodes together with PUT or BINPUT opcodes. | ||||
| * | Issue #19858: pickletools.optimize() now aware of the MEMOIZE opcode, can | Serhiy Storchaka | 2014-12-16 | 3 | -24/+92 |
| | | | | | | | | | | produce more compact result and no longer produces invalid output if input data contains MEMOIZE opcodes together with PUT or BINPUT opcodes. | ||||
* | | Merge with 3.4 | Terry Jan Reedy | 2014-12-16 | 5 | -24/+10 |
|\ \ | |/ | |||||
| * | Issue #20577: move configuration of FormatParagraph extension to new extension | Terry Jan Reedy | 2014-12-16 | 5 | -24/+10 |
| | | | | | | | | configuration dialog. Patch by Tal Einat. |