summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #19410: Put back in special-casing of '' forBrett Cannon2013-11-015-800/+797
| | | | | | | | | importlib.machinery.FileFinder. While originally moved to stop special-casing '' as PathFinder farther up the typical call chain now uses the cwd in the instance of '', it was deemed an unnecessary risk to breaking subclasses of FileFinder to take the special-casing out.
* Silence a compiler warning about an unused functionBrett Cannon2013-11-011-28/+28
|
* Issue #19464 Suppress compiler warnings during clean. Patch by Zachary Ware.Tim Golden2013-11-011-8/+8
|
* Issue #19413: Disregard duplicate namespace portions during reload tests.Eric Snow2013-11-011-2/+2
|
* Issue #19413: Restore pre-3.3 reload() semantics of re-finding modules.Eric Snow2013-11-015-507/+642
|
* Close #19442: warn_explicit() does nothing when called late during Python ↵Victor Stinner2013-10-311-9/+9
| | | | | | shutdown After more tests, I now think that it is the safest option.
* Closes #19349: Merged fix from 3.3.Vinay Sajip2013-10-311-1/+1
|\
| * Issue #19349: Corrected error message.Vinay Sajip2013-10-311-1/+1
| |
* | Close resources owned by subclass before calling super().close().Guido van Rossum2013-10-311-2/+2
| |
* | Null mergeTim Golden2013-10-310-0/+0
|\ \ | |/
| * Issue #19418 Fix some warnings on Win64Tim Golden2013-10-311-2/+5
| |
* | Issue #19437: Cleanup r_ref() of the marshal moduleVictor Stinner2013-10-311-5/+6
| |
* | Issue #19437: Fix r_object() of marshal module, handle PyDict_SetItem() failureVictor Stinner2013-10-311-3/+12
| | | | | | | | for TYPE_DICT and stop immedialty on first r_object() failure
* | Issue #19437: Fix r_object() of marshal module, handle r_byte() failure forVictor Stinner2013-10-311-0/+2
| | | | | | | | TYPE_SMALL_TUPLE
* | Issue #19437: Fix r_PyLong() of marshal module, stop immediatly at firstVictor Stinner2013-10-311-4/+11
| | | | | | | | failure, don't read any more data
* | Issue #19437: Fix newPySSLSocket(), handle PyWeakref_NewRef() failureVictor Stinner2013-10-311-0/+4
| |
* | Issue #19437: Fix PyCFuncPtrType constructor, handleVictor Stinner2013-10-311-0/+4
| | | | | | | | _ctypes_alloc_format_string() failure
* | Issue #19437: Fix PyCArrayType constructor, raise MemoryError on PyMem_Malloc()Victor Stinner2013-10-311-1/+3
| | | | | | | | failure
* | Issue #19437: Fix fill_and_set_sslerror() of _ssl, handle Py_BuildValue()Victor Stinner2013-10-311-1/+5
| | | | | | | | | | | | failure Don't call PyObject_CallObject() with NULL parameters and an exception set.
* | Issue #19437: Fix show_warning() of _warnings, stop at the first error to notVictor Stinner2013-10-311-10/+16
| | | | | | | | call a Python function with an exception set
* | Issue #19437: Fix get_filter() from _warnings, don't call PyObject_IsSubclass()Victor Stinner2013-10-311-2/+10
| | | | | | | | with an exception set
* | Null merge for issue #19452Eli Bendersky2013-10-310-0/+0
|\ \ | |/ | | | | It affects docs of 3.3 in a way that was fixed differently in 3.4
| * Issue #19452: Clarify the documentation of iterparse w.r.t. events argument.Eli Bendersky2013-10-311-1/+1
| | | | | | | | | | In 3.3 iterparse accepts a tuple in events (the C accelerator enforces this). This limitation was lifted in Python 3.4
* | Issue #19437: Fix _pickle, don't call _Unpickler_SkipConsumed() with anVictor Stinner2013-10-311-3/+3
| | | | | | | | exception set
* | cleanup _Unpickler_SkipConsumed(): remove 1 level of indentationVictor Stinner2013-10-311-12/+15
| |
* | Issue #19418 Fix some warnings on Win64Tim Golden2013-10-311-2/+5
| |
* | merge 3.3Benjamin Peterson2013-10-311-1/+1
|\ \ | |/
| * make string literal constBenjamin Peterson2013-10-311-1/+1
| |
* | Merged documentation update from 3.3.Vinay Sajip2013-10-311-7/+8
|\ \ | |/
| * Corrected some incorrect cross-references.Vinay Sajip2013-10-311-7/+8
| |
* | asyncio: Add new file (forgotten).Guido van Rossum2013-10-301-0/+166
| |
* | asyncio: Add support for running subprocesses on Windows with the IOCP event ↵Guido van Rossum2013-10-307-195/+137
| | | | | | | | loop (Richard Oudkerk).
* | asyncio: Make the IOCP proactor support "waitable" handles (Richard Oudkerk).Guido van Rossum2013-10-303-0/+256
| |
* | asyncio: Update some comments.Guido van Rossum2013-10-301-3/+1
| |
* | asyncio: When not closing the connection after receiving EOF, still remove ↵Guido van Rossum2013-10-301-1/+6
| | | | | | | | the read handler.
* | Issue #19172: Add a get_map() method to selectors.Charles-François Natali2013-10-303-1/+61
| |
* | Issue #19437: Fix select.epoll.poll(), fix code handling PyMem_New() errorVictor Stinner2013-10-301-1/+0
| | | | | | | | The bug was introduced with the select.epoll module! So it's 5 years old :-)
* | Issue #19437: Fix os.statvfs(), handle errorsVictor Stinner2013-10-301-0/+4
| |
* | Issue #19424: Fix a compiler warningVictor Stinner2013-10-301-1/+1
| | | | | | | | memcmp() just takes raw pointers
* | merge 3.3 (#19435)Benjamin Peterson2013-10-303-5/+18
|\ \ | |/
| * merge 3.2 (#19435)Benjamin Peterson2013-10-303-5/+17
| |\
| | * merge 3.1 (#19435)Benjamin Peterson2013-10-303-5/+18
| | |\
| | | * use the collapsed path in the run_cgi method (closes #19435)Benjamin Peterson2013-10-303-5/+16
| | | |
* | | | merge 3.3Benjamin Peterson2013-10-301-3/+3
|\ \ \ \ | |/ / /
| * | | update commentBenjamin Peterson2013-10-301-3/+3
| | | |
* | | | Issue #19442: Fix warnings emitted during Python shutdownVictor Stinner2013-10-291-5/+12
| | | | | | | | | | | | | | | | | | | | Warnings may be emitted during Python shutdown, like "unclosed file XXX". During shutdown, globals()['__main__'] may be None.
* | | | Issue #19424: Fix test_warnings for locale encoding unable to encodeVictor Stinner2013-10-291-6/+7
| | | | | | | | | | | | | | | | "\xe9\u20ac" characters
* | | | Issue #19424: Fix the warnings module to accept filename containing surrogateVictor Stinner2013-10-293-47/+70
| | | | | | | | | | | | | | | | characters.
* | | | Issue #19424: Optimize PyUnicode_CompareWithASCIIString()Victor Stinner2013-10-291-13/+30
| | | | | | | | | | | | | | | | | | | | Use fast memcmp() instead of a loop using the slow PyUnicode_READ() macro. strlen() is still necessary to check Unicode string containing null bytes.
* | | | Issue #19373: Add Misc/NEWS entry.Ned Deily2013-10-291-0/+3
| | | |