index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Objects
/
abstract.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
1
-4/+4
*
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner
2020-04-14
1
-1/+1
*
bpo-40170: Remove PyIndex_Check() macro (GH-19428)
Victor Stinner
2020-04-08
1
-2/+0
*
bpo-40170: Add _PyIndex_Check() internal function (GH-19426)
Victor Stinner
2020-04-08
1
-9/+11
*
bpo-40170: Convert PyObject_CheckBuffer() macro to a function (GH-19376)
Victor Stinner
2020-04-07
1
-0/+10
*
bpo-39481: Implementation for PEP 585 (#18239)
Guido van Rossum
2020-04-07
1
-0/+6
*
bpo-39947: Move Py_EnterRecursiveCall() to internal C API (GH-18972)
Victor Stinner
2020-03-13
1
-0/+1
*
bpo-38643: Raise SystemError instead of crashing when PyNumber_ToBase is call...
Serhiy Storchaka
2020-03-09
1
-9/+6
*
bpo-39573: Use Py_IS_TYPE() macro to check for types (GH-18809)
Andy Lester
2020-03-06
1
-3/+2
*
bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)
Andy Lester
2020-03-04
1
-1/+1
*
bpo-39382: Avoid dangling object use in abstract_issubclass() (GH-18530)
Yonatan Goldschmidt
2020-02-22
1
-3/+9
*
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin
2020-02-11
1
-4/+4
*
bpo-39573: Use Py_TYPE() in abstract.c (GH-18390)
Victor Stinner
2020-02-07
1
-94/+94
*
Restore PyObject_IsInstance() comment (GH-18345)
Victor Stinner
2020-02-04
1
-17/+23
*
bpo-38644: Pass tstate to Py_EnterRecursiveCall() (GH-16997)
Victor Stinner
2019-11-04
1
-31/+49
*
abstract.c should not be executable. (GH-15348)
Benjamin Peterson
2019-08-21
1
-0/+0
*
bpo-15913: Implement PyBuffer_SizeFromFormat() (GH-13873)
Joannah Nanjekye
2019-08-20
1
-0/+42
*
bpo-37648: Fixed minor inconsistency in some __contains__. (GH-14904)
Serhiy Storchaka
2019-08-04
1
-1/+1
*
bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)
Jeroen Demeyer
2019-07-08
1
-1/+1
*
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer
2019-07-04
1
-5/+5
*
bpo-20092. Use __index__ in constructors of int, float and complex. (GH-13108)
Serhiy Storchaka
2019-06-01
1
-0/+19
*
bpo-36048: Use __index__() instead of __int__() for implicit conversion if av...
Serhiy Storchaka
2019-02-25
1
-5/+6
*
bpo-35992: Use PySequence_GetItem only if sq_item is not NULL (GH-11857)
Ivan Levkivskyi
2019-02-17
1
-2/+5
*
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner
2018-11-12
1
-1/+1
*
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner
2018-10-31
1
-1/+1
*
closes bpo-34504: Remove the useless NULL check in PySequence_Check(). (GH-8935)
Alexey Izbyshev
2018-08-25
1
-1/+1
*
bpo-32500: Fix error messages for sequence and mapping C API. (GH-7846)
Serhiy Storchaka
2018-07-23
1
-0/+20
*
bpo-33738: Address review comments in GH #7477 (GH-7585)
Christian Tismer
2018-06-10
1
-0/+2
*
bpo-33738: Fix macros which contradict PEP 384 (GH-7477)
Christian Tismer
2018-06-09
1
-0/+15
*
bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code ...
Serhiy Storchaka
2018-01-25
1
-33/+17
*
bpo-32226: Make __class_getitem__ an automatic class method. (#5098)
Serhiy Storchaka
2018-01-04
1
-2/+2
*
bpo-32226: Implementation of PEP 560 (core components) (#4732)
Ivan Levkivskyi
2017-12-14
1
-0/+15
*
bpo-28280: Make PyMapping_Keys(), PyMapping_Values() and PyMapping_Items() al...
Oren Milman
2017-10-08
1
-27/+49
*
bpo-31338 (#3374)
Barry Warsaw
2017-09-15
1
-1/+1
*
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow
2017-09-08
1
-0/+1
*
bpo-30721: Add missing '?' to new error message (GH-3131)
Sanyam Khurana
2017-08-18
1
-1/+1
*
bpo-30721: Show correct syntax hint in Py3 when using Py2 redirection syntax ...
Sanyam Khurana
2017-08-18
1
-0/+15
*
bpo-30730: Prevent environment variables injection in subprocess on Windows. ...
Serhiy Storchaka
2017-06-23
1
-2/+2
*
bpo-29838: Add asserts for checking results of sq_length and mq_length slots....
Serhiy Storchaka
2017-04-16
1
-9/+23
*
bpo-29548: Fix some inefficient call API usage (GH-97)
INADA Naoki
2017-02-16
1
-1/+1
*
bpo-29524: Add Objects/call.c file (#12)
Victor Stinner
2017-02-12
1
-725/+0
*
Backed out changeset f23fa1f7b68f
Victor Stinner
2017-02-10
1
-0/+725
*
Issue #29465: Add Objects/call.c file
Victor Stinner
2017-02-10
1
-725/+0
*
Issue #29507: Fix _PyObject_CallFunctionVa()
Victor Stinner
2017-02-09
1
-2/+4
*
Optimize slots: avoid temporary PyMethodObject
Victor Stinner
2017-02-09
1
-0/+35
*
Fix refleaks if Py_EnterRecursiveCall() fails
Victor Stinner
2017-02-08
1
-1/+4
*
Issue #29306: Fix usage of Py_EnterRecursiveCall()
Victor Stinner
2017-02-08
1
-48/+54
*
Issue #29360: _PyStack_AsDict() doesn't check kwnames
Victor Stinner
2017-01-24
1
-2/+1
*
_PyStack_AsDict() now checks kwnames != NULL
Victor Stinner
2017-01-18
1
-1/+3
*
Rephrase !PyErr_Occurred() comment: may=>can
Victor Stinner
2017-01-18
1
-2/+2
[next]