summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* calculate_path() now fails with a fatal error when it fails to allocate memoryVictor Stinner2013-11-161-49/+40
* Issue #19544 and Issue #1180: Restore global option to ignore ~/.pydistutils...Andrew Kuchling2013-11-105-8/+68
* 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 on Windows 64-bit: asdl_seq_SET() stores the index param...Victor Stinner2013-11-151-4/+6
* Fix compiler warning (on Windows 64-bit): explicit cast Py_ssize_t to unsignedVictor Stinner2013-11-151-2/+2
* Fix compiler warning in win32_urandom(): explicit cast to DWORD inVictor Stinner2013-11-151-1/+1
* 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 #19544, #6516: no need to catch AttributeError on import pwd/grpVictor Stinner2013-11-151-2/+2
* Issue #19544 and Issue #6516: quick workaround for failing buildsChristian Heimes2013-11-151-2/+2
* Issue #19504: Used American spelling for 'customize'.Vinay Sajip2013-11-155-11/+11
|\
| * Issue #19504: Used American spelling for 'customize'.Vinay Sajip2013-11-155-11/+11
* | Closes #19523: Merged fix from 3.3.Vinay Sajip2013-11-152-1/+5
|\ \ | |/
| * Issue #19523: Closed FileHandler leak which occurred when delay was set.Vinay Sajip2013-11-152-1/+5
* | Issue #19544 and Issue #6516: Restore support for --user and --group paramete...Andrew Kuchling2013-11-159-15/+230
* | (Merge 3.3) fileutils.c: use MAXPATHLEN instead of PATH_MAXVictor Stinner2013-11-151-6/+6
|\ \ | |/
| * fileutils.c: use MAXPATHLEN instead of PATH_MAXVictor Stinner2013-11-151-6/+6
* | (Merge 3.3) sysmodule.c: fix sys_update_path(), use Py_ARRAY_LENGTH() to getVictor Stinner2013-11-151-1/+1
|\ \ | |/
| * sysmodule.c: fix sys_update_path(), use Py_ARRAY_LENGTH() to get the size ofVictor Stinner2013-11-151-1/+1
* | (Merge 3.3) pythonrun.c: fix Py_GetPythonHome(), use Py_ARRAY_LENGTH() to getVictor Stinner2013-11-151-2/+3
|\ \ | |/
| * pythonrun.c: fix Py_GetPythonHome(), use Py_ARRAY_LENGTH() to get the size ofVictor Stinner2013-11-151-2/+3
* | asyncio: Longer timeout in Windows test_popen. Fixes issue 19598.Guido van Rossum2013-11-151-1/+2
* | Avoid triggering the refleak detectorNick Coghlan2013-11-151-8/+14
* | Don't decref exc too soonNick Coghlan2013-11-151-1/+2
* | Close 19609: narrow scope of codec exc chainingNick Coghlan2013-11-152-15/+32
* | asyncio: Refactor waitpid mocks. Patch by Anthony Baire.Guido van Rossum2013-11-151-249/+186
* | Issue #19437: Fix init_builtin(), handle _PyImport_FindExtensionObject()Victor Stinner2013-11-141-1/+5
* | Issue #19429, #19437: fix error handling in the OSError constructorVictor Stinner2013-11-141-3/+5
* | 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 #19592: Use specific asserts in lib2to3 tests.Serhiy Storchaka2013-11-145-17/+17
|\ \ | |/
| * Issue #19592: Use specific asserts in lib2to3 tests.Serhiy Storchaka2013-11-145-17/+17
* | Issue #19589: Use specific asserts in asyncio tests.Serhiy Storchaka2013-11-143-10/+12
* | asyncio: Avoid ResourceWarning. Fix issue 19580 by Vajrasky Kok.Guido van Rossum2013-11-141-4/+18
* | Add unused third arg for the benefit of Valgrind.Stefan Krah2013-11-141-1/+1
* | fix refleaksBenjamin Peterson2013-11-141-3/+7
* | adjust styleBenjamin Peterson2013-11-141-12/+8
* | asyncio: Relax timing requirement. Fixes issue 19579.Guido van Rossum2013-11-141-2/+2
* | mergeChristian Heimes2013-11-143-15/+21
|\ \
| * | 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
| * | Issue #19437: Fix fold_unaryops_on_constants() of the peephole optimizer, clearVictor Stinner2013-11-141-0/+1
* | | Issue #17828: _PyObject_GetDictPtr() may return NULL instead of a PyObject**Christian Heimes2013-11-141-3/+5
|/ /
* | Issue #17828: va_start() must be accompanied by va_end()Christian Heimes2013-11-141-6/+7
* | asyncio: Fix from Anthony Baire for CPython issue 19566 (replaces earlier fix).Guido van Rossum2013-11-133-42/+60
* | removed Enum.__eq__ as it added nothingEthan Furman2013-11-132-5/+11
* | asyncio: Temporary fix by Victor Stinner for issue 19566.Guido van Rossum2013-11-131-2/+3