- 06 Feb, 2017 7 commits
-
-
Victor Stinner authored
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
-
Victor Stinner authored
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.
-
Victor Stinner authored
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.
-
Berker Peksag authored
-
Berker Peksag authored
-
Serhiy Storchaka authored
_PyArg_NoPositional() now are macros.
-
Xiang Zhang authored
-
- 05 Feb, 2017 7 commits
-
-
Serhiy Storchaka authored
-
Steve Dower authored
-
Steve Dower authored
-
Berker Peksag authored
-
Berker Peksag authored
Patch by Ryan Gonzalez.
-
Steve Dower authored
-
Steve Dower authored
-
- 04 Feb, 2017 26 commits
-
-
Steve Dower authored
-
Steve Dower authored
-
Steve Dower authored
-
Steve Dower authored
-
Steve Dower authored
-
Steve Dower authored
-
Steve Dower authored
-
Steve Dower authored
-
Steve Dower authored
-
Steve Dower authored
-
Steve Dower authored
-
Steve Dower authored
-
Steve Dower authored
-
Steve Dower authored
-
Serhiy Storchaka authored
the match object. Based on patch by WGH.
-
Serhiy Storchaka authored
the match object. Based on patch by WGH.
-
Serhiy Storchaka authored
the match object. Based on patch by WGH.
-
Stefan Krah authored
-
Stefan Krah authored
Patch by Chi Hsuan Yen.
-
Raymond Hettinger authored
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).
-
Serhiy Storchaka authored
Based on patch by Georg Brandl.
-
Serhiy Storchaka authored
Original patch by Georg Brandl.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
using PySlice_GetIndicesEx() in debug builds.
-