summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* gh-93143: Avoid NULL check in LOAD_FAST based on analysis in the compiler (GH...Dennis Sweeney2022-05-311-0/+27
* gh-93345: Fix a crash in substitution of nested TypeVar after TypeVarTuple (G...Serhiy Storchaka2022-05-311-1/+1
* bpo-41287: Handle `doc` argument of `property.__init__` in subclasses (#23205)Sergei Izmailov2022-05-291-18/+35
* bpo-40514: Drop EXPERIMENTAL_ISOLATED_SUBINTERPRETERS (gh-93185)Eric Snow2022-05-272-39/+3
* GH-90230: Add stats to breakdown the origin of calls to `PyEval_EvalFrame` (G...Mark Shannon2022-05-274-3/+17
* GH-93207: Remove HAVE_STDARG_PROTOTYPES configure check for stdarg.h (#93215)Kumar Aditya2022-05-273-12/+0
* gh-60074: add new stable API function PyType_FromMetaclass (GH-93012)Wenzel Jakob2022-05-271-9/+26
* gh-91924: Optimize unicode_check_encoding_errors() (#93200)Victor Stinner2022-05-261-2/+16
* Remove unnecessary for loop initializer in long_lshift1() (GH-93071)oda-gitso2022-05-251-1/+1
* gh-93202: Always use %zd printf formatter (#93201)Victor Stinner2022-05-251-7/+2
* gh-93040 Wrap unused parameters in Objects/obmalloc.c with Py_UNUSED (#93175)oda-gitso2022-05-251-13/+14
* gh-93033: Use wmemchr in stringlib (GH-93034)goldsteinn2022-05-2410-14/+38
* GH-92955: fix memory leak in code object lines and positions iterators (gh-92...Kumar Aditya2022-05-192-4/+8
* gh-92914: Round the allocated size for lists up to the even number (GH-92915)Serhiy Storchaka2022-05-191-0/+6
* Split refcount stats into 'interpreter' and 'non-interpreter' (GH-92919)Mark Shannon2022-05-181-0/+2
* GH-92804: Fix memory leak in memoryview iterator (gh-92805)Kumar Aditya2022-05-142-3/+5
* gh-90861: Memory optimization for set.issubset (gh-92799)Dong-hee Na2022-05-141-5/+5
* gh-85858: Remove PyUnicode_InternImmortal() function (#92579)Victor Stinner2022-05-131-52/+17
* gh-89653: Use int type for Unicode kind (#92704)Victor Stinner2022-05-134-32/+32
* gh-89653: PEP 670: Convert PyUnicode_KIND() macro to function (#92705)Victor Stinner2022-05-131-3/+0
* gh-91578: improved error message when trying to instantiate an abstract class...ravi1402222022-05-121-1/+1
* gh-92536: PEP 623: Remove wstr and legacy APIs from Unicode (GH-92537)Inada Naoki2022-05-123-1065/+94
* gh-89653: PEP 670: Convert PyCell macros to functions (#92653)Victor Stinner2022-05-112-9/+8
* gh-89653: PEP 670: Convert pycore_gc.h macros to functions (#92649)Victor Stinner2022-05-111-1/+1
* gh-91162: Fix substitution of unpacked tuples in generic aliases (GH-92335)Serhiy Storchaka2022-05-081-13/+108
* Issues/88027: A potential double free in list_sort_impl (#92367)Tim Peters2022-05-061-1/+3
* gh-92112: Fix crash triggered by an evil custom `mro()` (#92113)Alexey Izbyshev2022-05-061-9/+11
* gh-87390: Fix starred tuple equality and pickling (GH-92337)Serhiy Storchaka2022-05-051-0/+26
* bpo-43857: Improve the AttributeError message when deleting a missing attribu...Géry Ogam2022-05-052-5/+17
* bpo-46764: Fix wrapping bound method with @classmethod (#31367)Michael J. Sullivan2022-05-051-8/+0
* Use static inline function Py_EnterRecursiveCall() (#91988)Victor Stinner2022-05-047-45/+46
* Add more stats for freelist use and allocations. (GH-92211)Mark Shannon2022-05-036-0/+28
* gh-91320: Use _PyCFunction_CAST() (#92251)Victor Stinner2022-05-036-17/+17
* gh-91320: Argument Clinic uses _PyCFunction_CAST() (#32210)Victor Stinner2022-05-0312-77/+77
* gh-92031: Deoptimize Static Code at Finalization (GH-92039)Dennis Sweeney2022-05-031-10/+17
* gh-92154: Expose PyCode_GetCode in the C API (GH-92168)Ken Jin2022-05-031-0/+5
* Fix the closure argument to PyEval_EvalCodeEx. (GH-92175)larryhastings2022-05-021-1/+2
* gh-87390: Add __unpacked__ attribute to types.GenericAlias (#92059)Jelle Zijlstra2022-05-021-0/+2
* gh-90213: Speed up right shifts of negative integers (GH-30277)Mark Dickinson2022-05-021-29/+69
* bpo-36819: Fix crashes in built-in encoders with weird error handlers (GH-28593)Serhiy Storchaka2022-05-022-23/+52
* gh-92114: Improve error message for types with __class_getitem__ = None (GH-9...Serhiy Storchaka2022-05-021-1/+2
* gh-81548: Deprecate octal escape sequences with value larger than 0o377 (GH-9...Serhiy Storchaka2022-04-302-10/+48
* bpo-43224: Implement substitution of unpacked TypeVarTuple in C (GH-31828)Serhiy Storchaka2022-04-301-14/+104
* gh-91603: Speed up isinstance/issubclass on union types (GH-91631)Yurii Karabas2022-04-282-74/+15
* gh-91603: Speed up operator "|" for UnionType (GH-91955)Serhiy Storchaka2022-04-281-87/+70
* gh-91719: Add pycore_opcode.h internal header file (#91906)Victor Stinner2022-04-253-4/+6
* gh-89373: _Py_Dealloc() checks tp_dealloc exception (#32357)Victor Stinner2022-04-211-1/+35
* GH-88116: Document that PyCodeNew is dangerous, and make PyCode_NewEmpty less...Mark Shannon2022-04-211-1/+15
* GH-88116: Use a compact format to represent end line and column offsets. (GH-...Mark Shannon2022-04-214-215/+417
* gh-91636: Don't clear required fields of function objects (GH-91651)Dennis Sweeney2022-04-211-3/+11