| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-38644: Add _PyObject_Call() (GH-17089) | Victor Stinner | 2019-11-14 | 1 | -7/+8 |
|
|
* | Correct signature of __build_class__ (GH-16735) | Pablo Galindo | 2019-10-13 | 1 | -1/+1 |
|
|
* | Shorter docstring (GH-16322) | Raymond Hettinger | 2019-09-21 | 1 | -2/+2 |
|
|
* | bpo-38237: Make pow's arguments have more descriptive names and be keyword pa... | Ammar Askar | 2019-09-21 | 1 | -8/+8 |
|
|
* | bpo-37206: Unrepresentable default values no longer represented as None. (GH-... | Serhiy Storchaka | 2019-09-14 | 1 | -3/+3 |
|
|
* | bpo-36781: Optimize sum() for bools. (#13074) | Serhiy Storchaka | 2019-09-10 | 1 | -2/+2 |
|
|
* | bpo-15999: Clean up of handling boolean arguments. (GH-15610) | Serhiy Storchaka | 2019-09-01 | 1 | -13/+7 |
|
|
* | bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630) | Serhiy Storchaka | 2019-09-01 | 1 | -6/+2 |
|
|
* | bpo-37976: Prevent shadowing of TypeError in zip() (GH-15592) | Sergey Fedoseev | 2019-08-30 | 1 | -4/+0 |
|
|
* | Adjust builtins.zip() docstring to better communicate its signature (GH-14833) | Sergey Fedoseev | 2019-07-18 | 1 | -1/+1 |
|
|
* | bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267) | Jeroen Demeyer | 2019-07-08 | 1 | -6/+6 |
|
|
* | bpo-37483: add _PyObject_CallOneArg() function (#14558) | Jeroen Demeyer | 2019-07-04 | 1 | -5/+4 |
|
|
* | bpo-37363: Add audit events for a range of modules (GH-14301) | Steve Dower | 2019-06-24 | 1 | -0/+5 |
|
|
* | bpo-36710: Use tstate in pylifecycle.c (GH-14249) | Victor Stinner | 2019-06-19 | 1 | -2/+2 |
|
|
* | bpo-37253: Add _PyCompilerFlags_INIT macro (GH-14018) | Victor Stinner | 2019-06-13 | 1 | -6/+3 |
|
|
* | bpo-35766: compile(): rename feature_version parameter (GH-13994) | Victor Stinner | 2019-06-12 | 1 | -2/+3 |
|
|
* | bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G... | Jeroen Demeyer | 2019-05-31 | 1 | -6/+6 |
|
|
* | bpo-36974: implement PEP 590 (GH-13185) | Jeroen Demeyer | 2019-05-29 | 1 | -2/+2 |
|
|
* | bpo-37001: Makes symtable.symtable have parity with compile for input (#13483) | Dino Viehland | 2019-05-28 | 1 | -52/+3 |
|
|
* | bpo-36763: Implement the PEP 587 (GH-13592) | Victor Stinner | 2019-05-27 | 1 | -1/+1 |
|
|
* | bpo-36842: Implement PEP 578 (GH-12613) | Steve Dower | 2019-05-23 | 1 | -2/+28 |
|
|
* | bpo-36791: Safer detection of integer overflow in sum(). (GH-13080) | Serhiy Storchaka | 2019-05-05 | 1 | -3/+5 |
|
|
* | bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086) | Guido van Rossum | 2019-03-07 | 1 | -2/+9 |
|
|
* | bpo-36030: Remove _PyStack_AsTuple() and _PyStack_AsTupleSlice() (GH-12032) | Sergey Fedoseev | 2019-02-25 | 1 | -1/+2 |
|
|
* | bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112) | Serhiy Storchaka | 2019-02-25 | 1 | -3/+14 |
|
|
* | bpo-35766: Merge typed_ast back into CPython (GH-11645) | Guido van Rossum | 2019-01-31 | 1 | -4/+16 |
|
|
* | bpo-35582: Inline arguments tuple unpacking in handwritten code. (GH-11524) | Serhiy Storchaka | 2019-01-12 | 1 | -13/+18 |
|
|
* | bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749) | Serhiy Storchaka | 2018-11-27 | 1 | -9/+9 |
|
|
* | bpo-35177, Python-ast.h: Fix "Yield" compiler warning (GH-10664) | Victor Stinner | 2018-11-22 | 1 | -0/+1 |
|
|
* | bpo-35081: Rename internal headers (GH-10275) | Victor Stinner | 2018-11-12 | 1 | -1/+1 |
|
|
* | bpo-35177: Add dependencies between header files (GH-10361) | Victor Stinner | 2018-11-11 | 1 | -9/+2 |
|
|
* | bpo-35081: Add pycore_ prefix to internal header files (GH-10263) | Victor Stinner | 2018-10-31 | 1 | -1/+1 |
|
|
* | bpo-34637: Make the *start* argument for *sum()* visible as a keyword argumen... | Raymond Hettinger | 2018-09-12 | 1 | -2/+2 |
|
|
* | bpo-34523: Use _PyCoreConfig instead of globals (GH-9005) | Victor Stinner | 2018-08-29 | 1 | -1/+4 |
|
|
* | closes bpo-34474: Python/bltinmodule.c: Add missing NULL check in builtin_sum... | Alexey Izbyshev | 2018-08-24 | 1 | -0/+5 |
|
|
* | bpo-34170: Add Python/coreconfig.c for _PyCoreConfig (GH-8607) | Victor Stinner | 2018-08-01 | 1 | -23/+0 |
|
|
* | bpo-34149: Behavior of the min/max with key=None (GH-8328) | Alexander Marshalov | 2018-07-24 | 1 | -0/+4 |
|
|
* | bpo-23722: Raise a RuntimeError for absent __classcell__. (GH-6931) | Serhiy Storchaka | 2018-05-20 | 1 | -15/+4 |
|
|
* | bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH... | Siddhesh Poyarekar | 2018-04-29 | 1 | -3/+3 |
|
|
* | bpo-32674: Improve the docstring for __import__ (GH-5339) | oldk | 2018-02-02 | 1 | -3/+3 |
|
|
* | bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code ... | Serhiy Storchaka | 2018-01-25 | 1 | -24/+13 |
|
|
* | bpo-9566: Fix size_t=>int downcast warnings (#5230) | Victor Stinner | 2018-01-18 | 1 | -2/+2 |
|
|
* | bpo-32544: Speed up hasattr() and getattr() (GH-5173) | INADA Naoki | 2018-01-16 | 1 | -10/+11 |
|
|
* | bpo-29240, bpo-32030: Py_Main() re-reads config if encoding changes (#4899) | Victor Stinner | 2017-12-16 | 1 | -3/+4 |
|
|
* | bpo-32240: Add the const qualifier to declarations of PyObject* array argumen... | Serhiy Storchaka | 2017-12-15 | 1 | -6/+6 |
|
|
* | bpo-32226: Implementation of PEP 560 (core components) (#4732) | Ivan Levkivskyi | 2017-12-14 | 1 | -3/+92 |
|
|
* | bpo-29240: PEP 540: Add a new UTF-8 Mode (#855) | Victor Stinner | 2017-12-13 | 1 | -0/+3 |
|
|
* | bpo-30950: Convert round() to Argument Clinic. (#2740) | Serhiy Storchaka | 2017-11-15 | 1 | -19/+16 |
|
|
* | Add the const qualifier to "char *" variables that refer to literal strings. ... | Serhiy Storchaka | 2017-11-11 | 1 | -1/+1 |
|
|
* | PEP 553 built-in breakpoint() function (bpo-31353) (#3355) | Barry Warsaw | 2017-10-05 | 1 | -0/+23 |
|
|