aboutsummaryrefslogtreecommitdiff
path: root/Objects
AgeCommit message (Expand)Author
2021-12-08bpo-45813: Drop redundant assertion from frame.clear() (GH-29990)Andrew Svetlov
2021-12-08bpo-46009: Do not exhaust generator when send() method raises (GH-29986)Mark Shannon
2021-12-07bpo-45947: Place dict and values pointer at fixed (negative) offset just befo...Mark Shannon
2021-12-06bpo-45963: Make space for the InterpreterFrame of a generator in that generat...Mark Shannon
2021-12-03bpo-45607: Make it possible to enrich exception displays via setting their __...Irit Katriel
2021-12-03bpo-45885: Specialize COMPARE_OP (GH-29734)Dennis Sweeney
2021-12-02bpo-45954: Rename PyConfig.no_debug_ranges to code_debug_ranges (GH-29886)Victor Stinner
2021-11-29bpo-45786: Allocate space for frame in frame object. (GH-29729)Mark Shannon
2021-11-27bpo-44530: Reverts a change to the 'code.__new__' audit event (GH-29809)Steve Dower
2021-11-26bpo-45760: Remove PyNumber_InMatrixMultiply (GH-29751)Dong-hee Na
2021-11-23bpo-44525: Copy free variables in bytecode to allow calls to inner functions ...Mark Shannon
2021-11-22bpo-45813: Make sure that frame->generator is NULLed when generator is deallo...Mark Shannon
2021-11-19bpo-45609: Specialize STORE_SUBSCR (GH-29242)Dennis Sweeney
2021-11-18bpo-45510: Specialize BINARY_SUBTRACT (GH-29523)Dong-hee Na
2021-11-16bpo-45636: Simplify BINARY_OP (GH-29565)Brandt Bucher
2021-11-08bpo-45723: Prepare support for autoconf 2.71 (GH-29441)Christian Heimes
2021-11-06bpo-45392: Update the docstring of the 'type' built-in (GH-29439)Mark Dickinson
2021-11-04bpo-45697: Use PyObject_TypeCheck in type_call (GH-29392)Itamar Ostricher
2021-11-03bpo-45691: Make array of small ints static to fix use-after-free error. (GH-2...Mark Shannon
2021-10-28Store actual ints, not pointers to them in the interpreter state. (GH-29274)Mark Shannon
2021-10-28bpo-45256: Rationalize code around Python-to-Python calls a bit. (GH-29235)Mark Shannon
2021-10-28bpo-45637: Store the frame pointer in the cframe (GH-29267)Mark Shannon
2021-10-24bpo-45530: speed listobject.c's unsafe_tuple_compare() (GH-29076)Tim Peters
2021-10-23bpo-45292: [PEP 654] add the ExceptionGroup and BaseExceptionGroup classes (G...Irit Katriel
2021-10-22bpo-30570: Use Py_EnterRecursiveCall() in issubclass() (GH-29048)Dennis Sweeney
2021-10-22bpo-43706: Use PEP 590 vectorcall to speed up enumerate() (GH-25154)Dong-hee Na
2021-10-21bpo-45526: obmalloc radix use 64 addr bits (GH-29062)Neil Schemenauer
2021-10-21bpo-45521: Fix a bug in the obmalloc radix tree code. (GH-29051)Neil Schemenauer
2021-10-21bpo-45522: Allow to disable freelists on build time (GH-29056)Christian Heimes
2021-10-21bpo-45315: PyType_FromSpec: Copy spec->name and have the type own the memory ...Petr Viktorin
2021-10-19bpo-35134: Add Include/cpython/longobject.h (GH-29044)Victor Stinner
2021-10-18bpo-45256: Avoid C calls for most Python to Python calls. (GH-28937)Mark Shannon
2021-10-15bpo-45482: Rename namespaceobject.h to pycore_namespace.h (GH-28975)Victor Stinner
2021-10-15bpo-35081: Move interpreteridobject.h to Include/internal/ (GH-28969)Victor Stinner
2021-10-15bpo-35134: Move classobject.h to Include/cpython/ (GH-28968)Victor Stinner
2021-10-14bpo-45479: Futher simplify Py_UniversalNewlineFgets. (GH-28967)Benjamin Peterson
2021-10-14closes bpo-45479: Degunkify Py_UniversalNewlineFgets. (GH-28965)Benjamin Peterson
2021-10-14bpo-35134: Add Include/cpython/floatobject.h (GH-28957)Victor Stinner
2021-10-14bpo-45439: Move _PyObject_VectorcallTstate() to pycore_call.h (GH-28893)Victor Stinner
2021-10-14bpo-45467: Fix IncrementalDecoder and StreamReader in the "raw-unicode-escape...Serhiy Storchaka
2021-10-14bpo-45367: Specialize BINARY_MULTIPLY (GH-28727)Dennis Sweeney
2021-10-14bpo-45461: Fix IncrementalDecoder and StreamReader in the "unicode-escape" co...Serhiy Storchaka
2021-10-13bpo-45434: pyport.h no longer includes <stdlib.h> (GH-28914)Victor Stinner
2021-10-13bpo-45434: Remove pystrhex.h header file (GH-28923)Victor Stinner
2021-10-13bpo-45340: Don't create object dictionaries unless actually needed (GH-28802)Mark Shannon
2021-10-13pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)Victor Stinner
2021-10-12bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)Victor Stinner
2021-10-12bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)Victor Stinner
2021-10-12bpo-45439: _PyObject_Call() only checks tp_vectorcall_offset once (GH-28890)Victor Stinner
2021-10-11bpo-45412: Remove Py_SET_ERRNO_ON_MATH_ERROR() macro (GH-28820)Victor Stinner