summaryrefslogtreecommitdiff
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
| | | | | | | | * | | | | | | | | | | Issue #29004: Merge crc_hqx() doc from 3.6Martin Panter2016-12-242-4/+4
| | | | | | | | |\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ Merge from 3.6.Serhiy Storchaka2016-12-211-0/+2
| | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | * | | | | | | | | | | | | Issue #28822: Adjust indices handling of PyUnicode_FindChar().Xiang Zhang2016-12-201-0/+22
| | | | | | | | * | | | | | | | | | | | | Issue #20191: Fixed a crash in resource.prlimit() when pass a sequence thatSerhiy Storchaka2016-12-19376-141197/+703
| | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | * | | | | | | | | | | | | Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of ...Serhiy Storchaka2016-12-1611-35/+23
| | | | | | | | | * | | | | | | | | | | | | Merge 3.6Victor Stinner2016-12-151-0/+14
| | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ \ Fixes maximum usable length of buffer for formatting time zone in localtime().Steve Dower2016-12-14373-141171/+690
| | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | * | | | | | | | | | | | | | Initialize variables to fix compiler warningsVictor Stinner2016-12-092-4/+4
| | | | | | | | | | * | | | | | | | | | | | | | Use PyObject_CallFunctionObjArgs()Victor Stinner2016-12-091-8/+14
| | | | | | | | | | * | | | | | | | | | | | | | Use _PyObject_CallMethodIdObjArgs()Victor Stinner2016-12-093-6/+6
| | | | | | | | | | * | | | | | | | | | | | | | Use _PyObject_CallMethodIdObjArgs() in _ioVictor Stinner2016-12-095-10/+14
| | | | | | | | | | * | | | | | | | | | | | | | Use _PyObject_CallMethodIdObjArgs() in _datetimeVictor Stinner2016-12-091-8/+11
| | | | | | | | | | * | | | | | | | | | | | | | Use _PyObject_CallMethodIdObjArgs() in _elementtreeVictor Stinner2016-12-091-9/+10
| | | | | | | | | | * | | | | | | | | | | | | | Use _PyObject_CallMethodIdObjArgs() in _ctypesVictor Stinner2016-12-091-13/+21
| | | | | | | | | | * | | | | | | | | | | | | | Fix refleak introduced in change 032cbdb596feVictor Stinner2016-12-091-0/+1
| | | | | | | | | | * | | | | | | | | | | | | | Use _PyObject_CallMethodIdObjArgs() in _asyncioVictor Stinner2016-12-091-17/+19
| | | | | | | | | | * | | | | | | | | | | | | | Issue #28915: Use _PyObject_CallNoArg()Victor Stinner2016-12-092-3/+3
| | | | | | | | | | * | | | | | | | | | | | | | time_strptime() uses PyObject_Call()Victor Stinner2016-12-091-7/+13
| | | | | | | | | | * | | | | | | | | | | | | | build_struct_time() uses Py_BuildValue()Victor Stinner2016-12-091-11/+20
| | | | | | | | | | * | | | | | | | | | | | | | Use _PyObject_CallMethodIdObjArgs()Victor Stinner2016-12-091-2/+2
| | | | | | | | | | * | | | | | | | | | | | | | Don't parenthesis in _PyObject_CallMethodId() formatVictor Stinner2016-12-093-3/+3
| | | | | | | | | | * | | | | | | | | | | | | | Merge from 3.6.Serhiy Storchaka2016-12-07364-141070/+549
| | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | * | | | | | | | | | | | | | Use _PyObject_CallNoArg()Victor Stinner2016-12-066-9/+9
| | | | | | | | | | | * | | | | | | | | | | | | | Use _PyObject_CallNoArg()Victor Stinner2016-12-067-22/+22
| | | | | | | | | | | * | | | | | | | | | | | | | Issue #28152: Fix -Wunreachable-code warning on clangVictor Stinner2016-12-051-2/+5
| | | | | | | | | | | * | | | | | | | | | | | | | Issue #28152: Fix -Wunreachable-code warning on clangVictor Stinner2016-12-051-5/+5
| | | | | | | | | | | * | | | | | | | | | | | | | Issue #28152: Fix -Wunreachable-code warnings on ClangVictor Stinner2016-12-052-0/+14
| | | | | | | | | | | * | | | | | | | | | | | | | Issue #28858: Remove _PyObject_CallArg1() macroVictor Stinner2016-12-056-12/+14
| | | | | | | | | | | * | | | | | | | | | | | | | Backed out changeset b9c9691c72c5Victor Stinner2016-12-0411-31/+33
| | | | | | | | | | | * | | | | | | | | | | | | | Merge 3.6 (issue #28843)Yury Selivanov2016-12-011-0/+5
| | | | | | | | | | | * | | | | | | | | | | | | | Replace PyObject_CallFunction() with fastcallVictor Stinner2016-12-014-8/+8
| | | | | | | | | | | * | | | | | | | | | | | | | Replace PyObject_CallFunctionObjArgs() with fastcallVictor Stinner2016-12-0111-33/+31
| | | | | | | | | | | * | | | | | | | | | | | | | Add TCP_CONGESTION and TCP_USER_TIMEOUTVictor Stinner2016-11-291-0/+6
| | | | | | | | | | | * | | | | | | | | | | | | | Issue #28792: Remove aliases from _bisectVictor Stinner2016-11-241-7/+0
| | | | | | | | | | | * | | | | | | | | | | | | | Issue #28765: _sre.compile() now checks the type of groupindex and indexgroupVictor Stinner2016-11-223-8/+8
| | | | | | | | | | | * | | | | | | | | | | | | | Merge 3.6Victor Stinner2016-11-22347-141004/+471
| | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ \ Issue #28752: Restored the __reduce__() methods of datetime objects.Serhiy Storchaka2016-11-221-8/+26
| | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge 3.6Victor Stinner2016-11-211-6/+67
| | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Issue #28532: Show sys.version when -V option is supplied twiceINADA Naoki2016-11-21347-141004/+471
| | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Issue #25659: Merge ctypes fix from 3.6Martin Panter2016-11-201-3/+9
| | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Issue #10656: Merge AIX build fix from 3.6Martin Panter2016-11-20347-141004/+471
| | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | * | | | | | | | | | | | | | | | | Issue #19569: Compiler warnings are now emitted if use most of deprecatedSerhiy Storchaka2016-11-202-10/+6
| | | | | | | | | | | | | | * | | | | | | | | | | | | | | | | Added the const qualifier to char* variables that refer to readonly internalSerhiy Storchaka2016-11-2012-20/+20
| | | | | | | | | | | | | | * | | | | | | | | | | | | | | | | Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSizeSerhiy Storchaka2016-11-2017-32/+32
| | | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Issue #28715: Added error checks for PyUnicode_AsUTF8().Serhiy Storchaka2016-11-203-7/+11
| | | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Issue #28732: Raise ValueError when argv[0] is emptySteve Dower2016-11-19336-140974/+445
| | | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Issue #28732: Raise ValueError when os.spawn*() is passed an empty tuple of a...Steve Dower2016-11-191-0/+10
| | | | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge from 3.6Steve Dower2016-11-19336-140974/+445
| | | | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-169-40/+39
| | | | | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ merge 3.6Benjamin Peterson2016-11-141-19/+34
| | | | | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \