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-46140: take more Py_buffer arguments as const * (GH-30217)
David Hewitt
2021-12-22
1
-3/+4
*
bpo-45760: Remove PyNumber_InMatrixMultiply (GH-29751)
Dong-hee Na
2021-11-26
1
-29/+4
*
bpo-45636: Simplify BINARY_OP (GH-29565)
Brandt Bucher
2021-11-16
1
-0/+12
*
bpo-30570: Use Py_EnterRecursiveCall() in issubclass() (GH-29048)
Dennis Sweeney
2021-10-22
1
-6/+14
*
bpo-35134: Move classobject.h to Include/cpython/ (GH-28968)
Victor Stinner
2021-10-15
1
-1/+0
*
bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)
Victor Stinner
2021-10-12
1
-0/+1
*
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
Victor Stinner
2021-10-11
1
-2/+2
*
bpo-44640: Improve punctuation consistency in isinstance/issubclass error mes...
wyz23x2
2021-09-17
1
-2/+2
*
bpo-45123: PyAiter_Check and PyObject_GetAiter fix & rename. (GH-28194)
Yury Selivanov
2021-09-07
1
-7/+5
*
bpo-41103: Resurrect the old buffer protocol. (GH-27437)
Inada Naoki
2021-07-29
1
-0/+79
*
bpo-42747: Remove Py_TPFLAGS_HAVE_AM_SEND and make Py_TPFLAGS_HAVE_VERSION_TA...
Petr Viktorin
2021-07-23
1
-3/+1
*
bpo-44654: Refactor and clean up the union type implementation (GH-27196)
Serhiy Storchaka
2021-07-17
1
-4/+2
*
bpo-31861: Add aiter and anext to builtins (#23847)
Joshua Bronson
2021-03-23
1
-0/+31
*
bpo-38302: __pow__/__rpow__ now called when __ipow__ returns NotImplemented (...
Alex
2021-02-26
1
-21/+27
*
bpo-40170: Always define PyIter_Check() as a function (GH-24548)
Erlend Egeberg Aasland
2021-02-16
1
-5/+5
*
bpo-42979: Use _Py_CheckSlotResult() to check slots result (GH-24356)
Victor Stinner
2021-01-29
1
-187/+282
*
bpo-42979: Enhance abstract.c assertions checking slot result (GH-24352)
Victor Stinner
2021-01-27
1
-8/+9
*
bpo-42085: Introduce dedicated entry in PyAsyncMethods for sending values (#2...
Vladimir Matveev
2020-11-10
1
-0/+26
*
Delete PyGen_Send (#22663)
Vladimir Matveev
2020-10-12
1
-25/+0
*
bpo-41756: Add PyIter_Send function (#22443)
Vladimir Matveev
2020-10-10
1
-0/+24
*
bpo-41974: Remove complex.__float__, complex.__floordiv__, etc (GH-22593)
Serhiy Storchaka
2020-10-09
1
-5/+5
*
bpo-41909: Enable previously disabled recursion checks. (GH-22536)
Serhiy Storchaka
2020-10-04
1
-2/+0
*
bpo-41428: Implementation for PEP 604 (GH-21515)
Maggie Moss
2020-09-09
1
-6/+9
*
bpo-39573: Use the Py_TYPE() macro (GH-21433)
Victor Stinner
2020-07-10
1
-2/+2
*
bpo-41123: Remove PyLong_FromUnicode() (GH-21204)
Inada Naoki
2020-06-29
1
-1/+1
*
bpo-41103: Remove old buffer protocol support (#21117)
Inada Naoki
2020-06-25
1
-79/+0
*
bpo-36710: Pass tstate explicitly in abstract.c (GH-21075)
Victor Stinner
2020-06-23
1
-40/+61
*
bpo-40824: Do not mask errors in __iter__ in "in" and the operator module. (G...
Serhiy Storchaka
2020-06-22
1
-1/+3
*
bpo-40792: Make the result of PyNumber_Index() always having exact type int. ...
Serhiy Storchaka
2020-05-28
1
-12/+20
*
bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)
Serhiy Storchaka
2020-05-26
1
-7/+24
*
bpo-38787: Add PyCFunction_CheckExact() macro for exact type checks (GH-20024)
scoder
2020-05-12
1
-1/+1
*
bpo-39465: Don't access directly _Py_Identifier members (GH-20043)
Victor Stinner
2020-05-11
1
-1/+1
*
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
[next]