summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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-291-3/+3
|\ \ \ \ | |/ / /
| * | | update commentBenjamin Peterson2013-10-291-3/+3
| | | |
* | | | Issue #19442: Fix warnings emitted during Python shutdownVictor Stinner2013-10-301-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
| | | |
* | | | mergeChristian Heimes2013-10-291-1/+1
|\ \ \ \ | |/ / /
| * | | mergeChristian Heimes2013-10-292-2/+2
| |\ \ \
| * | | | fix languageChristian Heimes2013-10-291-1/+1
| | | | |
* | | | | Null mergeTim Golden2013-10-290-0/+0
|\ \ \ \ \ | | |/ / / | |/| | |
| * | | | Issue 15792 Correct build options on Win64. Patch by Jeremy Kloth.Tim Golden2013-10-292-2/+2
| |/ / /
* | | | Issue #17936: Fix O(n**2) behaviour when adding or removing many subclasses ↵Antoine Pitrou2013-10-292-59/+66
| | | | | | | | | | | | | | | | of a given type.
* | | | mergeChristian Heimes2013-10-296-23/+105
|\ \ \ \
| * | | | Issue #19437: Fix dec_format() of the _decimal module, handle dec_strdup()Victor Stinner2013-10-291-0/+1
| | | | | | | | | | | | | | | | | | | | failure (memory allocation failure): raise a MemoryError exception
| * | | | Issue #19433: test_capi: check signness of some C typesVictor Stinner2013-10-291-10/+34
| | | | |
| * | | | Issue #19433: test_capi: add tests on the size of some C typesVictor Stinner2013-10-291-0/+40
| | | | |
| * | | | Issue #19437: Fix _PyUnicode_New() (constructor of legacy string), set allVictor Stinner2013-10-291-11/+14
| | | | | | | | | | | | | | | | | | | | | | | | | attributes before checking for error. The destructor expects all attributes to be set. It is now safe to call Py_DECREF(unicode) in the constructor.
| * | | | Issue #19437: Fix PyObject_CallFunction(), handle Py_VaBuildValue() andVictor Stinner2013-10-291-0/+2
| | | | | | | | | | | | | | | | | | | | PyTuple_New() failure
| * | | | Cleanup locale.localeconv(): move Py_DECREF() closer to the errorVictor Stinner2013-10-291-2/+3
| | | | |
| * | | | Issue #19437: Fix convert_op_cmp() of decimal.Decimal rich comparator, handleVictor Stinner2013-10-291-10/+17
| | | | | | | | | | | | | | | | | | | | PyObject_IsInstance() failure
| * | | | Issue #19437: Fix Array_subscript() of ctypes, handle Array_item() failureVictor Stinner2013-10-291-0/+4
| | | | |
* | | | | Issue #19227 / Issue #18747: Remove pthread_atfork() handler to remove ↵Christian Heimes2013-10-294-67/+15
|\ \ \ \ \ | |/ / / / |/| / / / | |/ / / | | | | | | | | OpenSSL re-seeding It is causing trouble like e.g. hanging processes.
| * | | Issue #18747: document issue with OpenSSL's CPRNG state and forkChristian Heimes2013-10-292-0/+12
| | | |
| * | | Issue #19227 / Issue #18747: Remove pthread_atfork() handler to remove ↵Christian Heimes2013-10-291-67/+0
| | | | | | | | | | | | | | | | | | | | | | | | OpenSSL re-seeding It is causing trouble like e.g. hanging processes.
* | | | Issue #19420: Fix reference leak in module initalization code of _hashopenssl.cChristian Heimes2013-10-292-1/+4
| | | |
* | | | Issue #18609: Add a fast-path for "iso8859-1" encodingVictor Stinner2013-10-291-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On AIX, the locale encoding may be "iso8859-1", which was not a known syntax of the legacy ISO 8859-1 encoding. Using a C codec instead of a Python codec is faster but also avoids tricky issues during Python startup or complex code.
* | | | fix indentVictor Stinner2013-10-291-4/+4
| | | |
* | | | merge with 3.3Georg Brandl2013-10-294-6/+6
|\ \ \ \ | |/ / /
| * | | Clarify sentence.Georg Brandl2013-10-291-1/+1
| | | |
| * | | Closes #19416: fix references in the nntplib docs.Georg Brandl2013-10-291-3/+3
| | | |
| * | | Fix wrong signature for two-argument newwin(). Found by Jacqueline Leykam ↵Georg Brandl2013-10-291-1/+1
| | | | | | | | | | | | | | | | on docs@.