summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Issue #29314: Merge with 3.5Mariatta Wijaya2017-02-071-1/+2
| |\ \ | | |/
| | * Issue #29314: Set the stacklevel to two in asyncio.async() Deprecation WarningMariatta Wijaya2017-02-071-1/+2
| | |
* | | Issue #29371: merge with 3.6Mariatta Wijaya2017-02-071-11/+13
|\ \ \ | |/ /
| * | Issue #29371: merge with 3.5Mariatta Wijaya2017-02-071-11/+13
| |\ \ | | |/
| | * Issue #29371: Clarify bitwise OR operation in doctest option flags.Mariatta Wijaya2017-02-071-11/+13
| | |
* | | Issue #28164: Improves test on Windows 7Steve Dower2017-02-061-16/+22
|\ \ \ | |/ /
| * | Issue #28164: Improves test on Windows 7Steve Dower2017-02-061-16/+22
| | |
* | | Includes ensurepip and venv packages in nuget package.Steve Dower2017-02-061-2/+11
|\ \ \ | |/ /
| * | Includes ensurepip and venv packages in nuget package.Steve Dower2017-02-061-2/+11
| |\ \ | | |/
| | * Includes ensurepip and venv packages in nuget package.Steve Dower2017-02-061-2/+11
| | |
* | | mergeRaymond Hettinger2017-02-061-1/+1
|\ \ \ | |/ /
| * | Substitute a more readable f-stringRaymond Hettinger2017-02-061-1/+1
| | |
* | | Optimize deque index, insert and rotate() methodsVictor Stinner2017-02-061-11/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue #29452: Use METH_FASTCALL calling convention for index(), insert() and rotate() methods of collections.deque to avoid the creation a temporary tuple to pass position arguments. Speedup on deque methods: * d.rotate(): 1.10x faster * d.rotate(1): 1.24x faster * d.insert(): 1.18x faster * d.index(): 1.24x faster
* | | Prohibit implicit C function declarationsVictor Stinner2017-02-063-0/+65
| | | | | | | | | | | | | | | | | | | | | Issue #27659: use -Werror=implicit-function-declaration when possible (GCC and Clang, but it depends on the compiler version). Patch written by Chi Hsuan Yen.
* | | regrtest: don't fail immediately if a child does crashVictor Stinner2017-02-063-6/+16
| | | | | | | | | | | | | | | | | | Issue #29362: Catch a crash of a worker process as a normal failure and continue to run next tests. It allows to get the usual test summary: single line result (OK/FAIL), total duration, etc.
* | | Merge from 3.6Berker Peksag2017-02-061-5/+5
|\ \ \ | |/ /
| * | Fix usage of data directiveBerker Peksag2017-02-061-5/+5
| | |
* | | Issue #29460: _PyArg_NoKeywords(), _PyArg_NoStackKeywords() andSerhiy Storchaka2017-02-064-6/+16
| | | | | | | | | | | | _PyArg_NoPositional() now are macros.
* | | Issue #29405: Make total calculation in _guess_delimiter more accurate.Xiang Zhang2017-02-061-2/+2
| | |
* | | Issue #20186: Regenerated Argument Clinic.Serhiy Storchaka2017-02-052-3/+3
| | |
* | | Merge from 3.6Steve Dower2017-02-051-1/+13
|\ \ \ | |/ /
| * | Adds precheck for console filename to fix Windows 7.Steve Dower2017-02-051-1/+13
| | |
* | | Issue #28489: Merge from 3.6Berker Peksag2017-02-051-1/+1
|\ \ \ | |/ /
| * | Issue #28489: Fix comment in tokenizer.cBerker Peksag2017-02-051-1/+1
| | | | | | | | | | | | Patch by Ryan Gonzalez.
* | | Merge from 3.6Steve Dower2017-02-051-15/+27
|\ \ \ | |/ /
| * | Updates test_winconsoleio to better show the source of its issues.Steve Dower2017-02-051-15/+27
| | |
* | | Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0].Steve Dower2017-02-042-2/+14
|\ \ \ | |/ /
| * | Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0].Steve Dower2017-02-042-2/+14
| |\ \ | | |/
| | * Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0].Steve Dower2017-02-042-2/+14
| | |
* | | Issue #29326: Ignores blank lines in ._pth files (Patch by Alexey Izbyshev)Steve Dower2017-02-044-14/+31
|\ \ \ | |/ /
| * | Issue #29326: Ignores blank lines in ._pth files (Patch by Alexey Izbyshev)Steve Dower2017-02-044-14/+31
| | |
* | | Merge issue #28164 and issue #29409Steve Dower2017-02-045-39/+101
|\ \ \ | |/ /
| * | Issue #28164: Correctly handle special console filenames (patch by Eryk Sun)Steve Dower2017-02-043-21/+76
| | |
| * | Issue #29409: Implement PEP 529 for io.FileIO (Patch by Eryk Sun)Steve Dower2017-02-043-18/+35
| | |
* | | Issue #29392: Prevent crash when passing invalid arguments into msvcrt module.Steve Dower2017-02-042-4/+45
|\ \ \ | |/ /
| * | Issue #29392: Prevent crash when passing invalid arguments into msvcrt module.Steve Dower2017-02-042-4/+45
| |\ \ | | |/
| | * Issue #29392: Prevent crash when passing invalid arguments into msvcrt module.Steve Dower2017-02-042-12/+51
| | |
* | | Issue #29416: Prevent infinite loop in pathlib.Path.mkdirSteve Dower2017-02-043-1/+14
|\ \ \ | |/ /
| * | Issue #29416: Prevent infinite loop in pathlib.Path.mkdirSteve Dower2017-02-043-1/+14
| |\ \ | | |/
| | * Issue #29416: Prevent infinite loop in pathlib.Path.mkdirSteve Dower2017-02-043-1/+14
| | |
* | | Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-043-2/+20
|\ \ \ | |/ / | | | | | | the match object. Based on patch by WGH.
| * | Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-043-2/+20
| |\ \ | | |/ | | | | | | the match object. Based on patch by WGH.
| | * Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-043-2/+20
| | | | | | | | | | | | the match object. Based on patch by WGH.
* | | Merge 3.6.Stefan Krah2017-02-041-1/+1
|\ \ \ | |/ /
| * | Issue29439: _decimal on Android requires linking with libm.Stefan Krah2017-02-041-1/+1
| | | | | | | | | | | | Patch by Chi Hsuan Yen.
* | | Reduce load factor (from 66% to 60%) to improve effectiveness of linear probing.Raymond Hettinger2017-02-041-3/+3
| | | | | | | | | | | | | | | | | | | | | Decreased density gives better collision statistics (average of 2.5 probes in a full table versus 3.0 previously) and fewer occurences of starting a second possibly overlapping sequence of 10 linear probes. Makes resizes a little more frequent but each with less work (fewer insertions and fewer collisions).
* | | Issue #20186: Converted the tracemalloc module to Argument Clinic.Serhiy Storchaka2017-02-042-102/+315
| | | | | | | | | | | | Based on patch by Georg Brandl.
* | | Issue #20186: Converted the symtable module to Argument Clinic.Serhiy Storchaka2017-02-042-11/+61
| | | | | | | | | | | | Original patch by Georg Brandl.
* | | Removed redundant Argument Clinic directives.Serhiy Storchaka2017-02-043-19/+0
| | |
* | | Issue #20185: Converted the gc module to Argument Clinic.Serhiy Storchaka2017-02-042-98/+390
| | |