| Commit message (Expand) | Author | Age | Files | Lines |
* | asyncio: Pause accepting whenever accept() returns certain errors. Fixes asyn... | Guido van Rossum | 2013-11-01 | 3 | -9/+30 |
|
|
* | Abstract out stat calls in importlib for easier experimentation. | Brett Cannon | 2013-11-01 | 2 | -2738/+2762 |
|
|
* | Issue #19410: Put back in special-casing of '' for | Brett Cannon | 2013-11-01 | 5 | -800/+797 |
|
|
* | Silence a compiler warning about an unused function | Brett Cannon | 2013-11-01 | 1 | -28/+28 |
|
|
* | Issue #19464 Suppress compiler warnings during clean. Patch by Zachary Ware. | Tim Golden | 2013-11-01 | 1 | -8/+8 |
|
|
* | Issue #19413: Disregard duplicate namespace portions during reload tests. | Eric Snow | 2013-11-01 | 1 | -2/+2 |
|
|
* | Issue #19413: Restore pre-3.3 reload() semantics of re-finding modules. | Eric Snow | 2013-11-01 | 5 | -507/+642 |
|
|
* | Close #19442: warn_explicit() does nothing when called late during Python shu... | Victor Stinner | 2013-10-31 | 1 | -9/+9 |
|
|
* | Closes #19349: Merged fix from 3.3. | Vinay Sajip | 2013-10-31 | 1 | -1/+1 |
|\ |
|
| * | Issue #19349: Corrected error message. | Vinay Sajip | 2013-10-31 | 1 | -1/+1 |
|
|
* | | Close resources owned by subclass before calling super().close(). | Guido van Rossum | 2013-10-31 | 1 | -2/+2 |
|
|
* | | Null merge | Tim Golden | 2013-10-31 | 0 | -0/+0 |
|\ \
| |/ |
|
| * | Issue #19418 Fix some warnings on Win64 | Tim Golden | 2013-10-31 | 1 | -2/+5 |
|
|
* | | Issue #19437: Cleanup r_ref() of the marshal module | Victor Stinner | 2013-10-31 | 1 | -5/+6 |
|
|
* | | Issue #19437: Fix r_object() of marshal module, handle PyDict_SetItem() failure | Victor Stinner | 2013-10-31 | 1 | -3/+12 |
|
|
* | | Issue #19437: Fix r_object() of marshal module, handle r_byte() failure for | Victor Stinner | 2013-10-31 | 1 | -0/+2 |
|
|
* | | Issue #19437: Fix r_PyLong() of marshal module, stop immediatly at first | Victor Stinner | 2013-10-31 | 1 | -4/+11 |
|
|
* | | Issue #19437: Fix newPySSLSocket(), handle PyWeakref_NewRef() failure | Victor Stinner | 2013-10-31 | 1 | -0/+4 |
|
|
* | | Issue #19437: Fix PyCFuncPtrType constructor, handle | Victor Stinner | 2013-10-31 | 1 | -0/+4 |
|
|
* | | Issue #19437: Fix PyCArrayType constructor, raise MemoryError on PyMem_Malloc() | Victor Stinner | 2013-10-31 | 1 | -1/+3 |
|
|
* | | Issue #19437: Fix fill_and_set_sslerror() of _ssl, handle Py_BuildValue() | Victor Stinner | 2013-10-31 | 1 | -1/+5 |
|
|
* | | Issue #19437: Fix show_warning() of _warnings, stop at the first error to not | Victor Stinner | 2013-10-31 | 1 | -10/+16 |
|
|
* | | Issue #19437: Fix get_filter() from _warnings, don't call PyObject_IsSubclass() | Victor Stinner | 2013-10-31 | 1 | -2/+10 |
|
|
* | | Null merge for issue #19452 | Eli Bendersky | 2013-10-31 | 0 | -0/+0 |
|\ \
| |/ |
|
| * | Issue #19452: Clarify the documentation of iterparse w.r.t. events argument. | Eli Bendersky | 2013-10-31 | 1 | -1/+1 |
|
|
* | | Issue #19437: Fix _pickle, don't call _Unpickler_SkipConsumed() with an | Victor Stinner | 2013-10-31 | 1 | -3/+3 |
|
|
* | | cleanup _Unpickler_SkipConsumed(): remove 1 level of indentation | Victor Stinner | 2013-10-31 | 1 | -12/+15 |
|
|
* | | Issue #19418 Fix some warnings on Win64 | Tim Golden | 2013-10-31 | 1 | -2/+5 |
|
|
* | | merge 3.3 | Benjamin Peterson | 2013-10-31 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | make string literal const | Benjamin Peterson | 2013-10-31 | 1 | -1/+1 |
|
|
* | | Merged documentation update from 3.3. | Vinay Sajip | 2013-10-31 | 1 | -7/+8 |
|\ \
| |/ |
|
| * | Corrected some incorrect cross-references. | Vinay Sajip | 2013-10-31 | 1 | -7/+8 |
|
|
* | | asyncio: Add new file (forgotten). | Guido van Rossum | 2013-10-30 | 1 | -0/+166 |
|
|
* | | asyncio: Add support for running subprocesses on Windows with the IOCP event ... | Guido van Rossum | 2013-10-30 | 7 | -195/+137 |
|
|
* | | asyncio: Make the IOCP proactor support "waitable" handles (Richard Oudkerk). | Guido van Rossum | 2013-10-30 | 3 | -0/+256 |
|
|
* | | asyncio: Update some comments. | Guido van Rossum | 2013-10-30 | 1 | -3/+1 |
|
|
* | | asyncio: When not closing the connection after receiving EOF, still remove th... | Guido van Rossum | 2013-10-30 | 1 | -1/+6 |
|
|
* | | Issue #19172: Add a get_map() method to selectors. | Charles-François Natali | 2013-10-30 | 3 | -1/+61 |
|
|
* | | Issue #19437: Fix select.epoll.poll(), fix code handling PyMem_New() error | Victor Stinner | 2013-10-30 | 1 | -1/+0 |
|
|
* | | Issue #19437: Fix os.statvfs(), handle errors | Victor Stinner | 2013-10-30 | 1 | -0/+4 |
|
|
* | | Issue #19424: Fix a compiler warning | Victor Stinner | 2013-10-30 | 1 | -1/+1 |
|
|
* | | merge 3.3 (#19435) | Benjamin Peterson | 2013-10-30 | 3 | -5/+18 |
|\ \
| |/ |
|
| * | merge 3.2 (#19435) | Benjamin Peterson | 2013-10-30 | 3 | -5/+17 |
| |\ |
|
| | * | merge 3.1 (#19435) | Benjamin Peterson | 2013-10-30 | 3 | -5/+18 |
| | |\ |
|
| | | * | use the collapsed path in the run_cgi method (closes #19435) | Benjamin Peterson | 2013-10-30 | 3 | -5/+16 |
|
|
* | | | | merge 3.3 | Benjamin Peterson | 2013-10-30 | 1 | -3/+3 |
|\ \ \ \
| |/ / / |
|
| * | | | update comment | Benjamin Peterson | 2013-10-30 | 1 | -3/+3 |
|
|
* | | | | Issue #19442: Fix warnings emitted during Python shutdown | Victor Stinner | 2013-10-29 | 1 | -5/+12 |
|
|
* | | | | Issue #19424: Fix test_warnings for locale encoding unable to encode | Victor Stinner | 2013-10-29 | 1 | -6/+7 |
|
|
* | | | | Issue #19424: Fix the warnings module to accept filename containing surrogate | Victor Stinner | 2013-10-29 | 3 | -47/+70 |
|
|