summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Move PyErr_NoMemory() closer to the failure.Stefan Krah2013-11-081-1/+1
* Change style to match the surrounding code (no early returns).Stefan Krah2013-11-081-4/+3
* Issue #19437: Fix datetime_subtract(), handle new_delta() failureVictor Stinner2013-11-071-0/+3
* Issue #19437: Fix _io._IOBase.close(), handle _PyObject_SetAttrId() failureVictor Stinner2013-11-071-3/+8
* Issue #19437: Fix fsconvert_strdup(), raise a MemoryError on PyMem_Malloc()Victor Stinner2013-11-071-1/+3
* Issue #19512, #19515: remove shared identifiers, move identifiers where theyVictor Stinner2013-11-077-10/+14
* Issue #19514: Deduplicate some _Py_IDENTIFIER declarations.Martin v. Löwis2013-11-073-20/+9
* Merge #18985: Improve fcntl documentation.R David Murray2013-11-071-11/+13
|\
| * #18985: Improve fcntl documentation.R David Murray2013-11-071-11/+13
* | Issue #19512: Use the new _PyId_builtins identifierVictor Stinner2013-11-061-1/+1
* | Issue #19512: _count_elements() of _collections reuses PyId_get identifierVictor Stinner2013-11-061-1/+1
* | Issue #19512: fileio_init() reuses PyId_name identifier instead of "name"Victor Stinner2013-11-061-2/+3
* | Issue #19512: add some common identifiers to only create common strings once,Victor Stinner2013-11-066-6/+6
* | Issue #19512: pickle now uses an identifier to only create the Unicode stringVictor Stinner2013-11-061-2/+4
* | Issue #18582: fix memory leak in pbkdf2 codeChristian Heimes2013-11-061-0/+1
* | Issue #19437: Fix _threading.RLock constructor (rlock_new), callVictor Stinner2013-11-051-10/+14
* | Issue #19437: Fix pysqlite_cursor_iternext() of sqlite3, when the row factoryVictor Stinner2013-11-051-0/+5
* | Issue #19437: Fix pysqlite_connection_call() of sqlite3, return NULL whenVictor Stinner2013-11-051-17/+13
* | Issue #19437: Fix pysqlite_cursor_iternext() of sqlite3, handleVictor Stinner2013-11-051-0/+6
* | #18678: Correct names of spwd struct members.R David Murray2013-11-041-5/+9
* | Merge #19411: Clarify that b2a_hex/hexlify returns a bytes object.R David Murray2013-11-031-1/+2
|\ \ | |/
| * #19411: Clarify that b2a_hex/hexlify returns a bytes object.R David Murray2013-11-031-1/+2
| * Issue #19418 Fix some warnings on Win64Tim Golden2013-10-311-2/+5
* | Silence a compiler warning about an unused functionBrett Cannon2013-11-011-28/+28
* | Issue #19437: Fix newPySSLSocket(), handle PyWeakref_NewRef() failureVictor Stinner2013-10-311-0/+4
* | Issue #19437: Fix PyCFuncPtrType constructor, handleVictor Stinner2013-10-311-0/+4
* | Issue #19437: Fix PyCArrayType constructor, raise MemoryError on PyMem_Malloc()Victor Stinner2013-10-311-1/+3
* | Issue #19437: Fix fill_and_set_sslerror() of _ssl, handle Py_BuildValue()Victor Stinner2013-10-311-1/+5
* | Issue #19437: Fix _pickle, don't call _Unpickler_SkipConsumed() with anVictor Stinner2013-10-311-3/+3
* | 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
* | asyncio: Make the IOCP proactor support "waitable" handles (Richard Oudkerk).Guido van Rossum2013-10-301-0/+176
* | Issue #19437: Fix select.epoll.poll(), fix code handling PyMem_New() errorVictor Stinner2013-10-301-1/+0
* | Issue #19437: Fix os.statvfs(), handle errorsVictor Stinner2013-10-301-0/+4
* | mergeChristian Heimes2013-10-294-12/+89
|\ \
| * | Issue #19437: Fix dec_format() of the _decimal module, handle dec_strdup()Victor Stinner2013-10-291-0/+1
| * | 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
| * | 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
| * | 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 OpenSS...Christian Heimes2013-10-291-67/+0
|\ \ \ | |/ / |/| / | |/
| * Issue #19227 / Issue #18747: Remove pthread_atfork() handler to remove OpenSS...Christian Heimes2013-10-291-67/+0
* | Issue #19420: Fix reference leak in module initalization code of _hashopenssl.cChristian Heimes2013-10-291-1/+1
* | Issue #18408: Fix PyCStructUnionType_update_stgdict(), handleVictor Stinner2013-10-291-1/+3
* | Issue #18408: Fix _ctypes_alloc_format_string(), raise MemoryError on memoryVictor Stinner2013-10-291-1/+3
* | Issue #18408: Fix iobase_readline(), handle PyByteArray_Resize() failureVictor Stinner2013-10-291-5/+8
* | Issue #18408: Fix zipimport, handle PyUnicode_Substring() and get_subname() f...Victor Stinner2013-10-291-2/+7
* | Issue #19428: zipimport now handles errors when reading truncated or invalidVictor Stinner2013-10-291-3/+13
* | CJK codecs: less magical macros, semicolon is now explicitVictor Stinner2013-10-288-104/+118