| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-42073: allow classmethod to wrap other classmethod-like descriptors (GH-2... | Miss Islington (bot) | 2021-07-15 | 1 | -1/+1 |
|
|
* | bpo-43682: Make staticmethod objects callable (GH-25117) | Victor Stinner | 2021-04-11 | 1 | -1/+8 |
|
|
* | bpo-43682: @staticmethod inherits attributes (GH-25268) | Victor Stinner | 2021-04-09 | 1 | -9/+71 |
|
|
* | bpo-43541: Fix PyEval_EvalCodeEx() regression (GH-24918) | Victor Stinner | 2021-03-18 | 1 | -1/+1 |
|
|
* | bpo-42990: Functions inherit current builtins (GH-24564) | Victor Stinner | 2021-02-20 | 1 | -2/+6 |
|
|
* | bpo-42990: Refactor _PyFrame_New_NoTrack() (GH-24566) | Victor Stinner | 2021-02-18 | 1 | -52/+59 |
|
|
* | bpo-42990: Add __builtins__ attribute to functions (GH-24559) | Victor Stinner | 2021-02-18 | 1 | -0/+1 |
|
|
* | bpo-42990: Further refactoring of PyEval_ functions. (GH-24368) | Mark Shannon | 2021-02-01 | 1 | -2/+2 |
|
|
* | bpo-42990: Introduce 'frame constructor' struct to simplify API for PyEval_Co... | Mark Shannon | 2021-01-29 | 1 | -2/+11 |
|
|
* | bpo-42202: Store func annotations as a tuple (GH-23316) | Yurii Karabas | 2020-11-25 | 1 | -0/+19 |
|
|
* | bpo-42143: Ensure PyFunction_NewWithQualName() can't fail after creating the ... | Yonatan Goldschmidt | 2020-10-29 | 1 | -13/+16 |
|
|
* | bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056) | Victor Stinner | 2020-06-22 | 1 | -1/+0 |
|
|
* | bpo-40268: Remove unused pycore_pymem.h includes (GH-19531) | Victor Stinner | 2020-04-15 | 1 | -1/+0 |
|
|
* | bpo-40268: Remove unused structmember.h includes (GH-19530) | Victor Stinner | 2020-04-15 | 1 | -1/+1 |
|
|
* | bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) | Victor Stinner | 2020-04-14 | 1 | -1/+0 |
|
|
* | bpo-36347: stop using RESTRICTED constants (GH-12684) | Jeroen Demeyer | 2020-02-18 | 1 | -6/+4 |
|
|
* | bpo-39245: Switch to public API for Vectorcall (GH-18460) | Petr Viktorin | 2020-02-11 | 1 | -1/+1 |
|
|
* | bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392) | Victor Stinner | 2020-02-07 | 1 | -2/+2 |
|
|
* | bpo-19072: Make @classmethod support chained decorators (GH-8405) | Berker Peksag | 2019-08-24 | 1 | -0/+4 |
|
|
* | bpo-37151: remove _PyFunction_FastCallDict (GH-13864) | Jeroen Demeyer | 2019-06-18 | 1 | -12/+1 |
|
|
* | bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G... | Jeroen Demeyer | 2019-05-31 | 1 | -5/+5 |
|
|
* | bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653) | Jeroen Demeyer | 2019-05-30 | 1 | -1/+1 |
|
|
* | bpo-36974: implement PEP 590 (GH-13185) | Jeroen Demeyer | 2019-05-29 | 1 | -1/+3 |
|
|
* | bpo-36922: implement PEP-590 Py_TPFLAGS_METHOD_DESCRIPTOR (GH-13338) | Jeroen Demeyer | 2019-05-28 | 1 | -1/+2 |
|
|
* | bpo-36842: Implement PEP 578 (GH-12613) | Steve Dower | 2019-05-23 | 1 | -0/+40 |
|
|
* | bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112) | Serhiy Storchaka | 2019-02-25 | 1 | -1/+5 |
|
|
* | Clarify the behavior of the staticmethod builtin (GH-4362) | Jess Shapiro | 2018-12-24 | 1 | -2/+4 |
|
|
* | bpo-33029: Fix signatures of getter and setter functions. (GH-10746) | Serhiy Storchaka | 2018-11-27 | 1 | -12/+12 |
|
|
* | bpo-35081: Add Include/internal/pycore_tupleobject.h (GH-10705) | Victor Stinner | 2018-11-25 | 1 | -0/+1 |
|
|
* | bpo-35081: Add Include/internal/pycore_object.h (GH-10640) | Victor Stinner | 2018-11-21 | 1 | -0/+1 |
|
|
* | bpo-35081: Rename internal headers (GH-10275) | Victor Stinner | 2018-11-12 | 1 | -2/+2 |
|
|
* | bpo-35199: Add an internal _PyTuple_ITEMS() macro (GH-10434) | Victor Stinner | 2018-11-09 | 1 | -1/+1 |
|
|
* | bpo-35081: Add pycore_ prefix to internal header files (GH-10263) | Victor Stinner | 2018-10-31 | 1 | -2/+2 |
|
|
* | bpo-33418: Add tp_clear for function object (GH-8058) | INADA Naoki | 2018-07-04 | 1 | -13/+21 |
|
|
* | bpo-31787: Prevent refleaks when calling __init__() more than once (GH-3995) | Oren Milman | 2018-02-13 | 1 | -2/+2 |
|
|
* | bpo-30860: Consolidate stateful runtime globals. (#3397) | Eric Snow | 2017-09-08 | 1 | -0/+2 |
|
|
* | bpo-30878: Fix error message when keyword arguments are passed (#2635) | Sylvain | 2017-07-09 | 1 | -4/+4 |
|
|
* | bpo-29793: Convert some builtin types constructors to Argument Clinic. (#615) | Serhiy Storchaka | 2017-03-19 | 1 | -26/+31 |
|
|
* | Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever | Serhiy Storchaka | 2017-01-23 | 1 | -4/+2 |
|
|
* | Issue #28839: Optimize function_call() | Victor Stinner | 2017-01-03 | 1 | -47/+6 |
|
|
* | Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of ... | Serhiy Storchaka | 2016-12-16 | 1 | -1/+1 |
|
|
* | Issue #28139: Merge indentation fixes from 3.5 into 3.6 | Martin Panter | 2016-09-17 | 1 | -8/+12 |
|\ |
|
| * | Issue #28139: Fix messed up indentation | Martin Panter | 2016-09-17 | 1 | -8/+12 |
|
|
* | | Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF | Serhiy Storchaka | 2016-04-10 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF | Serhiy Storchaka | 2016-04-10 | 1 | -1/+1 |
|
|
* | | Issue #22570: Renamed Py_SETREF to Py_XSETREF. | Serhiy Storchaka | 2016-04-06 | 1 | -11/+11 |
|\ \
| |/ |
|
| * | Issue #22570: Renamed Py_SETREF to Py_XSETREF. | Serhiy Storchaka | 2016-04-06 | 1 | -5/+5 |
|
|
* | | Issue #20440: Cleaning up the code by using Py_SETREF. | Serhiy Storchaka | 2016-01-05 | 1 | -29/+6 |
|/ |
|
* | Issue #20440: Massive replacing unsafe attribute setting code with special | Serhiy Storchaka | 2015-12-24 | 1 | -10/+5 |
|
|
* | Issue #18520: Fix PyFunction_NewWithQualName() error handling | Victor Stinner | 2013-07-22 | 1 | -10/+9 |
|
|