Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | | | | | | | | loop (Richard Oudkerk). | ||||
* | | 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 ↵ | Guido van Rossum | 2013-10-30 | 1 | -1/+6 |
| | | | | | | | | the read handler. | ||||
* | | 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 |
| | | | | | | | | The bug was introduced with the select.epoll module! So it's 5 years old :-) | ||||
* | | 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 |
| | | | | | | | | memcmp() just takes raw pointers | ||||
* | | 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-29 | 1 | -3/+3 |
|\ \ \ \ | |/ / / | |||||
| * | | | update comment | Benjamin Peterson | 2013-10-29 | 1 | -3/+3 |
| | | | | |||||
* | | | | Issue #19442: Fix warnings emitted during Python shutdown | Victor Stinner | 2013-10-30 | 1 | -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 encode | Victor Stinner | 2013-10-29 | 1 | -6/+7 |
| | | | | | | | | | | | | | | | | "\xe9\u20ac" characters | ||||
* | | | | Issue #19424: Fix the warnings module to accept filename containing surrogate | Victor Stinner | 2013-10-29 | 3 | -47/+70 |
| | | | | | | | | | | | | | | | | characters. | ||||
* | | | | Issue #19424: Optimize PyUnicode_CompareWithASCIIString() | Victor Stinner | 2013-10-29 | 1 | -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 Deily | 2013-10-29 | 1 | -0/+3 |
| | | | | |||||
* | | | | merge | Christian Heimes | 2013-10-29 | 1 | -1/+1 |
|\ \ \ \ | |/ / / | |||||
| * | | | merge | Christian Heimes | 2013-10-29 | 2 | -2/+2 |
| |\ \ \ | |||||
| * | | | | fix language | Christian Heimes | 2013-10-29 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | Null merge | Tim Golden | 2013-10-29 | 0 | -0/+0 |
|\ \ \ \ \ | | |/ / / | |/| | | | |||||
| * | | | | Issue 15792 Correct build options on Win64. Patch by Jeremy Kloth. | Tim Golden | 2013-10-29 | 2 | -2/+2 |
| |/ / / | |||||
* | | | | Issue #17936: Fix O(n**2) behaviour when adding or removing many subclasses ↵ | Antoine Pitrou | 2013-10-29 | 2 | -59/+66 |
| | | | | | | | | | | | | | | | | of a given type. | ||||
* | | | | merge | Christian Heimes | 2013-10-29 | 6 | -23/+105 |
|\ \ \ \ | |||||
| * | | | | Issue #19437: Fix dec_format() of the _decimal module, handle dec_strdup() | Victor Stinner | 2013-10-29 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | failure (memory allocation failure): raise a MemoryError exception | ||||
| * | | | | Issue #19433: test_capi: check signness of some C types | Victor Stinner | 2013-10-29 | 1 | -10/+34 |
| | | | | | |||||
| * | | | | Issue #19433: test_capi: add tests on the size of some C types | Victor Stinner | 2013-10-29 | 1 | -0/+40 |
| | | | | | |||||
| * | | | | Issue #19437: Fix _PyUnicode_New() (constructor of legacy string), set all | Victor Stinner | 2013-10-29 | 1 | -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() and | Victor Stinner | 2013-10-29 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | PyTuple_New() failure | ||||
| * | | | | Cleanup locale.localeconv(): move Py_DECREF() closer to the error | Victor Stinner | 2013-10-29 | 1 | -2/+3 |
| | | | | | |||||
| * | | | | Issue #19437: Fix convert_op_cmp() of decimal.Decimal rich comparator, handle | Victor Stinner | 2013-10-29 | 1 | -10/+17 |
| | | | | | | | | | | | | | | | | | | | | PyObject_IsInstance() failure | ||||
| * | | | | Issue #19437: Fix Array_subscript() of ctypes, handle Array_item() failure | Victor Stinner | 2013-10-29 | 1 | -0/+4 |
| | | | | | |||||
* | | | | | Issue #19227 / Issue #18747: Remove pthread_atfork() handler to remove ↵ | Christian Heimes | 2013-10-29 | 4 | -67/+15 |
|\ \ \ \ \ | |/ / / / |/| / / / | |/ / / | | | | | | | | | OpenSSL re-seeding It is causing trouble like e.g. hanging processes. | ||||
| * | | | Issue #18747: document issue with OpenSSL's CPRNG state and fork | Christian Heimes | 2013-10-29 | 2 | -0/+12 |
| | | | | |||||
| * | | | Issue #19227 / Issue #18747: Remove pthread_atfork() handler to remove ↵ | Christian Heimes | 2013-10-29 | 1 | -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.c | Christian Heimes | 2013-10-29 | 2 | -1/+4 |
| | | | | |||||
* | | | | Issue #18609: Add a fast-path for "iso8859-1" encoding | Victor Stinner | 2013-10-29 | 1 | -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 indent | Victor Stinner | 2013-10-29 | 1 | -4/+4 |
| | | | | |||||
* | | | | merge with 3.3 | Georg Brandl | 2013-10-29 | 4 | -6/+6 |
|\ \ \ \ | |/ / / | |||||
| * | | | Clarify sentence. | Georg Brandl | 2013-10-29 | 1 | -1/+1 |
| | | | | |||||
| * | | | Closes #19416: fix references in the nntplib docs. | Georg Brandl | 2013-10-29 | 1 | -3/+3 |
| | | | | |||||
| * | | | Fix wrong signature for two-argument newwin(). Found by Jacqueline Leykam ↵ | Georg Brandl | 2013-10-29 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | on docs@. |