summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* bpo-43693: Compute deref offsets in compiler (gh-25152)Mark Shannon2021-06-042-23/+8
* bpo-43693: Add new internal code objects fields: co_fastlocalnames and co_fas...Eric Snow2021-06-034-221/+478
* bpo-44263: Py_TPFLAGS_HAVE_GC requires tp_traverse (GH-26463)Victor Stinner2021-06-011-2/+30
* Fix MSVC compiler warnings in dictobject.c (GH-26432)Mark Shannon2021-05-292-4/+6
* bpo-44206: Fix compiler warnings in dictobject.c (GH-26440)Pablo Galindo2021-05-281-3/+3
* bpo-44206: Add a version number to dictionary keys (GH-26333)Mark Shannon2021-05-283-311/+212
* bpo-43693: Add _PyCode_New(). (gh-26375)Eric Snow2021-05-271-147/+206
* bpo-43693: Clean up the PyCodeObject fields. (GH-26364)Eric Snow2021-05-264-57/+50
* bpo-44232: Fix type_new() error reporting (GH-26359)Victor Stinner2021-05-251-0/+4
* Remove effbot urls (GH-26308)E-Paine2021-05-221-1/+2
* bpo-44032: Fix downcast conversion in frameobject.c (GH-26291)Pablo Galindo2021-05-211-1/+1
* bpo-44184: Fix subtype_dealloc() for freed type (GH-26274)Victor Stinner2021-05-211-2/+9
* bpo-44032: Move data stack to thread from FrameObject. (GH-26076)Mark Shannon2021-05-215-143/+161
* bpo-43693: Group the code in codeobject.c logically. (gh-26216)Eric Snow2021-05-191-572/+622
* bpo-44114: Remove redundant cast. (GH-26098)Inada Naoki2021-05-131-2/+2
* bpo-44114: Fix dictkeys_reversed and dictvalues_reversed function signatures ...Joe Marshall2021-05-131-4/+4
* bpo-40222: "Zero cost" exception handling (GH-25729)Mark Shannon2021-05-074-197/+405
* bpo-44029: Remove Py_UNICODE APIs (GH-25881)Inada Naoki2021-05-072-304/+0
* bpo-43916: Move the _PyStructSequence_InitType function to the internal API (...Pablo Galindo2021-05-031-0/+1
* bpo-43977: Make sure that tp_flags for pattern matching are inherited correct...Mark Shannon2021-05-021-6/+12
* bpo-43901: Fix refleaks in test_module (GH-25754)Pablo Galindo2021-04-301-4/+11
* bpo-43908: check_set_special_type_attr() checks Py_TPFLAGS_IMMUTABLETYPE (GH-...Erlend Egeberg Aasland2021-04-301-7/+11
* bpo-43667: Fix broken Unicode encoding in non-UTF locales on Solaris (GH-25096)Jakub KulĂ­k2021-04-301-0/+40
* bpo-43916: PyStdPrinter_Type uses Py_TPFLAGS_DISALLOW_INSTANTIATION (GH-25749)Victor Stinner2021-04-301-27/+4
* bpo-43916: Add Py_TPFLAGS_DISALLOW_INSTANTIATION type flag (GH-25721)Victor Stinner2021-04-302-34/+77
* bpo-43973: object_set_class() checks Py_TPFLAGS_IMMUTABLETYPE (GH-25714)Erlend Egeberg Aasland2021-04-301-3/+3
* bpo-43977: Use tp_flags for collection matching (GH-25723)Mark Shannon2021-04-307-7/+14
* Two minor fixes for accessing a module's name. (#25658)larryhastings2021-04-301-6/+2
* bpo-43901: Lazy-create an empty annotations dict in all unannotated user clas...larryhastings2021-04-302-3/+138
* bpo-42800: Rename AUDIT_READ to PY_AUDIT_READ (GH-25736)Steve Dower2021-04-303-8/+8
* bpo-42800: add audit hooks for f_code and tb_frame (GH-24182)Ryan Hileman2021-04-293-8/+8
* bpo-43933: Show frame.f_lineno as None, rather than -1, if there is no line n...Mark Shannon2021-04-291-1/+7
* bpo-42739: Don't use sentinels to mark end of line table. (GH-25657)Mark Shannon2021-04-292-24/+21
* bpo-24275: Don't downgrade unicode-only dicts to mixed on lookups (GH-25186)Hristo Venev2021-04-291-3/+6
* bpo-43908: Add Py_TPFLAGS_IMMUTABLETYPE flag (GH-25520)Erlend Egeberg Aasland2021-04-281-1/+6
* bpo-41559: Change PEP 612 implementation to pure Python (#25449)Ken Jin2021-04-281-62/+14
* bpo-43962: Fix _PyInterpreterState_IDIncref() (GH-25683)Victor Stinner2021-04-281-3/+9
* bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525)Pablo Galindo2021-04-231-17/+28
* bpo-43475: Fix worst case collision behavior for NaN instances (GH-25493)Raymond Hettinger2021-04-222-3/+3
* bpo-40137: Add pycore_moduleobject.h internal header (GH-25507)Victor Stinner2021-04-213-18/+9
* bpo-40137: Optimize _PyType_GetModuleByDef() loop (GH-25505)Victor Stinner2021-04-211-5/+21
* bpo-40137: _PyType_GetModuleByDef() doesn't check tp_flags (GH-25504)Victor Stinner2021-04-211-15/+14
* bpo-38530: Properly extend UnboundLocalError from NameError (GH-25444)Pablo Galindo2021-04-161-1/+2
* bpo-38530: Offer suggestions on NameError (GH-25397)Pablo Galindo2021-04-141-2/+63
* bpo-38530: Offer suggestions on AttributeError (#16856)Pablo Galindo2021-04-142-12/+112
* bpo-43770: Cleanup type_ready() (GH-25388)Victor Stinner2021-04-131-119/+153
* bpo-43770: Reorder type_ready() (GH-25373)Victor Stinner2021-04-131-48/+56
* bpo-43682: Make staticmethod objects callable (GH-25117)Victor Stinner2021-04-111-1/+8
* bpo-43770: Refactor PyType_Ready() function (GH-25336)Victor Stinner2021-04-111-154/+270
* bpo-43751: Fix anext() bug where it erroneously returned None (GH-25238)Dennis Sweeney2021-04-111-1/+46