summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* | | | | | Argument Clinic: Use METH_FASTCALL for positionalsVictor Stinner2017-01-171-14/+32
* | | | | | _PyStack_UnpackDict() now returns -1 on errorVictor Stinner2017-01-173-14/+19
* | | | | | Add _PyArg_NoStackKeywords() helper functionVictor Stinner2017-01-172-5/+23
* | | | | | Add _PyArg_ParseStack() helper functionVictor Stinner2017-01-172-24/+82
* | | | | | Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywordsVictor Stinner2017-01-1738-177/+177
* | | | | | Rename keywords to kwargs in getargs.cVictor Stinner2017-01-161-31/+31
* | | | | | type_prepare() now uses fast call (METH_FASTCALL)Victor Stinner2017-01-161-2/+3
* | | | | | Cleanup getargs.cVictor Stinner2017-01-161-49/+17
* | | | | | __build_class__() builtin uses METH_FASTCALLVictor Stinner2017-01-161-15/+9
* | | | | | Add _PyStack_AsTupleSlice() helperVictor Stinner2017-01-162-0/+29
* | | | | | Optimize _PyCFunction_FastCallKeywords()Victor Stinner2017-01-162-37/+133
* | | | | | Issue #20180: forgot to update AC output.INADA Naoki2017-01-162-41/+39
* | | | | | Issue #20180: convert unicode methods to AC.INADA Naoki2017-01-162-409/+1405
* | | | | | Issue #26110: Add document for LOAD_METHOD and CALL_METHOD opcode.INADA Naoki2017-01-163-40/+61
* | | | | | merge 3.6Benjamin Peterson2017-01-161-1/+1
|\ \ \ \ \ \ | |/ / / / /
| * | | | | merge 3.5Benjamin Peterson2017-01-161-1/+1
| |\ \ \ \ \ | | |/ / / /
| | * | | | generate spaces instead of tabs into config.cBenjamin Peterson2017-01-161-1/+1
* | | | | | Closes #29132: Merged fix from 3.6.Vinay Sajip2017-01-152-5/+13
|\ \ \ \ \ \ | |/ / / / /
| * | | | | Fixed #29132: Updated shlex to work better with punctuation chars in POSIX mode.Vinay Sajip2017-01-152-5/+13
* | | | | | Issue #29062: Doc: Fix make suspiciousINADA Naoki2017-01-141-4/+4
|\ \ \ \ \ \ | |/ / / / /
| * | | | | Issue #29062: Doc: Fix make suspiciousINADA Naoki2017-01-141-4/+4
* | | | | | Repeat “when pass” fixes for 3.7 sectionMartin Panter2017-01-141-3/+3
* | | | | | Merge doc fixes from 3.6Martin Panter2017-01-1417-76/+76
|\ \ \ \ \ \ | |/ / / / /
| * | | | | More instances of “when pass”Martin Panter2017-01-141-2/+2
| * | | | | Merge doc fixes from 3.5Martin Panter2017-01-1418-75/+75
| |\ \ \ \ \ | | |/ / / /
| | * | | | Avoid line breaks after hyphens, otherwise they are turned into spacesMartin Panter2017-01-1412-64/+64
| | * | | | Fix grammar, typos and markup in documentation and code commentsMartin Panter2017-01-146-11/+11
* | | | | | Issue #1621: Overflow should not be possible in listextend()Martin Panter2017-01-141-0/+3
* | | | | | Issue #29145: Merge test from 3.6Martin Panter2017-01-141-0/+7
|\ \ \ \ \ \ | |/ / / / /
| * | | | | Merge tests from 3.5Martin Panter2017-01-142-2/+11
| |\ \ \ \ \ | | |/ / / /
| | * | | | Issues #1621, #29145: Test for str.join() overflowMartin Panter2017-01-121-0/+7
| | * | | | Issue #22980: Skip a sysconfig test if _ctypes is not available.Martin Panter2017-01-131-2/+4
* | | | | | Merged upstream changes.Vinay Sajip2017-01-131-2/+5
|\ \ \ \ \ \
| * | | | | | Document Python versions in which the removed features were deprecated.Serhiy Storchaka2017-01-131-2/+5
* | | | | | | Closed #29261: merged fix from 3.6.Vinay Sajip2017-01-131-1/+1
|\ \ \ \ \ \ \ | |/ / / / / / |/| / / / / / | |/ / / / /
| * | | | | Fixes #29261: merged fix from 3.5.Vinay Sajip2017-01-131-1/+1
| |\ \ \ \ \ | | |/ / / /
| | * | | | Fixes #29261: added venv/scripts/common to LIBSUBDIRS.Vinay Sajip2017-01-131-1/+1
* | | | | | Issue #29197: Removed deprecated function ntpath.splitunc().Serhiy Storchaka2017-01-135-61/+9
* | | | | | Issue #29210: Removed support of deprecated argument "exclude" inSerhiy Storchaka2017-01-135-49/+11
* | | | | | Issue #29062: Merge hashlib-blake2.rst into hashlib.rstINADA Naoki2017-01-133-443/+434
|\ \ \ \ \ \ | |/ / / / /
| * | | | | Issue #29062: Merge hashlib-blake2.rst into hashlib.rstINADA Naoki2017-01-133-447/+434
* | | | | | Issue #29219: Fixed infinite recursion in the repr of uninitializedSerhiy Storchaka2017-01-132-0/+7
|\ \ \ \ \ \ | |/ / / / /
| * | | | | Issue #29219: Fixed infinite recursion in the repr of uninitializedSerhiy Storchaka2017-01-132-0/+7
| |\ \ \ \ \ | | |/ / / /
| | * | | | Issue #29219: Fixed infinite recursion in the repr of uninitializedSerhiy Storchaka2017-01-132-0/+7
* | | | | | Issue #29192: Removed deprecated features in the http.cookies module.Serhiy Storchaka2017-01-135-57/+22
* | | | | | Issue #29193: A format string argument for string.Formatter.format()Serhiy Storchaka2017-01-135-14/+16
* | | | | | Issue #29195: Removed support of deprecated undocumented keyword argumentsSerhiy Storchaka2017-01-133-120/+54
* | | | | | Py_SIZE() was misused for dict.Serhiy Storchaka2017-01-131-1/+1
|\ \ \ \ \ \ | |/ / / / /
| * | | | | Py_SIZE() was misused for dict.Serhiy Storchaka2017-01-131-1/+1
| |\ \ \ \ \ | | |/ / / /
| | * | | | Py_SIZE() was misused for dict.Serhiy Storchaka2017-01-131-1/+1