summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* Issue #19634: time.strftime("%y") now raises a ValueError on AIX when given aVictor Stinner2013-11-171-0/+14
* Fix compilation error under gcc of the ctypes module bundled libffi for arm.Gregory P. Smith2013-11-171-7/+7
|\
| * Fix compilation error under gcc of the ctypes module bundled libffi for arm.Gregory P. Smith2013-11-171-7/+7
* | Issue #19448: Add private API to SSL module to lookup ASN.1 objects by OID, N...Christian Heimes2013-11-171-0/+91
* | Issue #19565: Prevent warnings at shutdown about pending overlapped ops.Richard Oudkerk2013-11-171-8/+28
* | Close #19282: Native context management in dbmNick Coghlan2013-11-172-0/+33
* | calculate_path() now fails with a fatal error when it fails to allocate memoryVictor Stinner2013-11-161-49/+40
* | Don't mix wide character strings and byte strings (L"lib/python" VERSION): useVictor Stinner2013-11-151-6/+13
* | Fix compiler warnings on Windows 64 bit: add an explicit cast from Py_ssize_tVictor Stinner2013-11-151-1/+1
* | Fix sock_recvfrom_guts(): recvfrom() size is limited to an int on Windows, notVictor Stinner2013-11-151-8/+8
* | Fix compiler warning on Windows 64 bit: _init_pos_args() result type isVictor Stinner2013-11-151-2/+2
* | Fix compiler warning (especially on Windows 64-bit): don't truncate Py_ssize_tVictor Stinner2013-11-151-4/+4
* | Fix compiler warning on Windows 64-bit: explicit cast size_t to unsigned longVictor Stinner2013-11-151-2/+2
* | Issue #19437: Fix parse_envlist() of the posix/nt module, don't callVictor Stinner2013-11-141-1/+3
* | Issue #19437: Fix parse_save_field() of the csv module, handle PyList_Append()Victor Stinner2013-11-141-1/+4
* | Issue #19437: Fix array.buffer_info(), handle PyLong_FromVoidPtr() andVictor Stinner2013-11-141-3/+15
* | Issue #19437: Use an identifier for "__name__" string in pickle to improveVictor Stinner2013-11-141-12/+5
* | Don't use deprecated function PyUnicode_GET_SIZE()Victor Stinner2013-11-132-7/+6
* | Issue #19437: Fix ctypes, handle PyCData_GetContainer() and GetKeepedObjects()Victor Stinner2013-11-131-1/+19
* | Issue #19437: Fix GetKeepedObjects() of ctypes, handle PyCData_GetContainer()Victor Stinner2013-11-131-1/+5
* | Issue #19437: Fix PyCData_GetContainer() of ctypes, handle PyDict_New() failureVictor Stinner2013-11-131-0/+2
* | Issue #19515: Remove duplicated identifiers in zipimport.cVictor Stinner2013-11-121-6/+4
* | Issue #19515: Remove identifiers duplicated in the same file.Victor Stinner2013-11-123-6/+4
* | Issue13674 Correct crash with strftime %y format under WindowsTim Golden2013-11-121-0/+7
|\ \ | |/
| * Issue13674 Correct crash with strftime %y format under WindowsTim Golden2013-11-121-0/+7
| * 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 dec_format() of the _decimal module, handle dec_strdup()Victor Stinner2013-10-291-0/+1
| * Issue #19437: Fix convert_op_cmp() of decimal.Decimal rich comparator, handleVictor Stinner2013-10-291-10/+17
* | Fixed compile error on Windows caused by arithmetic with void * pointersSerhiy Storchaka2013-11-111-3/+3
* | Issue #16685: Added support for any bytes-like objects in the audioop module.Serhiy Storchaka2013-11-101-288/+378
* | Issue #7171: Update syntax to replace MAX in favor of Py_MAX (matching implem...Jason R. Coombs2013-11-101-1/+5
* | Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to...Atsuo Ishimoto2012-07-161-2/+106
* | 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