COMMITS
/ Python/bltinmodule.c April 13, 2020
V
bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492)
Victor Stinner committed
February 11, 2020
P
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin committed
February 7, 2020
V
bpo-39573: Use Py_TYPE() macro in Python and Include directories (GH-18391)
Victor Stinner committed
February 5, 2020
V
bpo-39542: Declare _Py_AddToAllObjects() in pycore_object.h (GH-18368)
Victor Stinner committed
February 1, 2020
B
Update sum comment. (#18240)
Brandt Bucher committed
January 10, 2020
D
bpo-39200: Correct the error message for min/max builtin function (GH-17814)
Dong-hee Na committed
November 20, 2019
V
bpo-38835: Don't use PyFPE_START_PROTECT and PyFPE_END_PROTECT (GH-17231)
Victor Stinner committed
November 14, 2019
V
bpo-38644: Add _PyObject_Call() (GH-17089)
Victor Stinner committed
October 13, 2019
P
Correct signature of __build_class__ (GH-16735)
Pablo Galindo committed
September 21, 2019
R
Shorter docstring (GH-16322)
Raymond Hettinger committed
September 14, 2019
S
bpo-37206: Unrepresentable default values no longer represented as None. (GH-13933)
Serhiy Storchaka committed
September 10, 2019
S
bpo-36781: Optimize sum() for bools. (#13074)
Serhiy Storchaka committed
September 1, 2019
S
bpo-15999: Clean up of handling boolean arguments. (GH-15610)
Serhiy Storchaka committed
S
bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630)
Serhiy Storchaka committed
August 30, 2019
S
bpo-37976: Prevent shadowing of TypeError in zip() (GH-15592)
Sergey Fedoseev committed
July 18, 2019
S
Adjust builtins.zip() docstring to better communicate its signature (GH-14833)
Sergey Fedoseev committed
July 8, 2019
J
bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)
Jeroen Demeyer committed
July 4, 2019
J
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer committed
June 24, 2019
S
bpo-37363: Add audit events for a range of modules (GH-14301)
Steve Dower committed
June 19, 2019
V
bpo-36710: Use tstate in pylifecycle.c (GH-14249)
Victor Stinner committed
June 13, 2019
V
bpo-37253: Add _PyCompilerFlags_INIT macro (GH-14018)
Victor Stinner committed
June 12, 2019
V
bpo-35766: compile(): rename feature_version parameter (GH-13994)
Victor Stinner committed
May 31, 2019
J
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
Jeroen Demeyer committed
May 29, 2019
J
bpo-36974: implement PEP 590 (GH-13185)
Jeroen Demeyer committed
May 28, 2019
D
bpo-37001: Makes symtable.symtable have parity with compile for input (#13483)
Dino Viehland committed
May 27, 2019
V
bpo-36763: Implement the PEP 587 (GH-13592)
Victor Stinner committed
May 23, 2019
S
bpo-36842: Implement PEP 578 (GH-12613)
Steve Dower committed
May 5, 2019
S
bpo-36791: Safer detection of integer overflow in sum(). (GH-13080)
Serhiy Storchaka committed
March 7, 2019
G
bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086)
Guido van Rossum committed
February 25, 2019
S
bpo-36030: Remove _PyStack_AsTuple() and _PyStack_AsTupleSlice() (GH-12032)
Sergey Fedoseev committed
S
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
Serhiy Storchaka committed
January 31, 2019
G
bpo-35766: Merge typed_ast back into CPython (GH-11645)
Guido van Rossum committed
January 12, 2019
S
bpo-35582: Inline arguments tuple unpacking in handwritten code. (GH-11524)
Serhiy Storchaka committed
November 27, 2018
S
bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)
Serhiy Storchaka committed
November 22, 2018
V
bpo-35177, Python-ast.h: Fix "Yield" compiler warning (GH-10664)
Victor Stinner committed
November 12, 2018
V
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner committed
November 11, 2018
V
bpo-35177: Add dependencies between header files (GH-10361)
Victor Stinner committed
October 31, 2018
V
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner committed
September 12, 2018
R
bpo-34637: Make the *start* argument for *sum()* visible as a keyword argument. (GH-9208)
Raymond Hettinger committed
August 29, 2018
V
bpo-34523: Use _PyCoreConfig instead of globals (GH-9005)
Victor Stinner committed
August 24, 2018
A
closes bpo-34474: Python/bltinmodule.c: Add missing NULL check in builtin_sum_impl() (GH-8872)
Alexey Izbyshev committed
August 1, 2018
V
bpo-34170: Add Python/coreconfig.c for _PyCoreConfig (GH-8607)
Victor Stinner committed
July 24, 2018
A
bpo-34149: Behavior of the min/max with key=None (GH-8328)
Alexander Marshalov committed
May 20, 2018
S
bpo-23722: Raise a RuntimeError for absent __classcell__. (GH-6931)
Serhiy Storchaka committed
April 29, 2018
S
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
Siddhesh Poyarekar committed
February 2, 2018
O
bpo-32674: Improve the docstring for __import__ (GH-5339)
oldk committed
January 25, 2018
S
bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222)
Serhiy Storchaka committed
January 18, 2018
V
bpo-9566: Fix size_t=>int downcast warnings (#5230)
Victor Stinner committed
January 16, 2018
I
bpo-32544: Speed up hasattr() and getattr() (GH-5173)
INADA Naoki committed