| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Reindent PyFunction_NewWithQualName() | Victor Stinner | 2013-07-22 | 1 | -49/+49 |
|
|
* | use new generic __dict__ descriptor implementations | Benjamin Peterson | 2012-02-20 | 1 | -59/+3 |
|
|
* | initialize __dict__ if needed | Benjamin Peterson | 2012-02-19 | 1 | -6/+12 |
|
|
* | use defaults | Benjamin Peterson | 2012-02-19 | 1 | -3/+3 |
|
|
* | merge 3.2 | Benjamin Peterson | 2012-02-19 | 1 | -3/+1 |
|\ |
|
| * | use Py_CLEAR | Benjamin Peterson | 2012-02-19 | 1 | -3/+1 |
|
|
* | | allow arbitrary attributes on classmethod and staticmethod (closes #14051) | Benjamin Peterson | 2012-02-19 | 1 | -3/+27 |
|
|
* | | improve abstract property support (closes #11610) | Benjamin Peterson | 2011-12-15 | 1 | -2/+44 |
|
|
* | | PEP 3155 / issue #13448: Qualified name for classes and functions. | Antoine Pitrou | 2011-11-25 | 1 | -2/+42 |
|/ |
|
* | Merge branches/pep-0384. | Martin v. Löwis | 2010-12-03 | 1 | -1/+1 |
|
|
* | Remove redundant includes of headers that are already included by Python.h. | Georg Brandl | 2010-11-30 | 1 | -1/+0 |
|
|
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -662/+662 |
|
|
* | Issue #6697: use %U format instead of _PyUnicode_AsString(), because | Victor Stinner | 2010-03-12 | 1 | -2/+2 |
|
|
* | Merged revisions 74277,74321,74323,74326,74355,74465,74467,74488,74492,74513,... | Benjamin Peterson | 2009-09-11 | 1 | -6/+0 |
|
|
* | Merged revisions 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,... | Benjamin Peterson | 2009-06-28 | 1 | -10/+11 |
|
|
* | Issue 5982: Classmethod and staticmethod expose wrapped function with __func__. | Raymond Hettinger | 2009-05-29 | 1 | -2/+12 |
|
|
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -3/+3 |
|
|
* | Rename PyUnicode_AsString -> _PyUnicode_AsString and | Marc-André Lemburg | 2008-08-07 | 1 | -1/+1 |
|
|