summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* bpo-46848: Move _PyBytes_Find() to internal C API (GH-31642)Victor Stinner2022-03-021-0/+1
* dict: Internal cleanup (GH-31641)Inada Naoki2022-03-021-66/+44
* bpo-46848: Use stringlib/fastsearch in mmap (GH-31625)Dennis Sweeney2022-03-021-0/+18
* bpo-46845: Reduce dict size when all keys are Unicode (GH-31564)Inada Naoki2022-03-013-424/+782
* bpo-46311: Clean up PyLong_FromLong and PyLong_FromLongLong (GH-30496)Mark Dickinson2022-03-011-41/+31
* bpo-46753: Add the empty tuple to the _PyRuntimeState.global_objects. (gh-31345)Eric Snow2022-02-281-174/+164
* bpo-46857: Fix refleak in OSError INIT_ALIAS() (GH-31594)Victor Stinner2022-02-262-12/+5
* Propagate errors (however unlikely) from _Py_Deepfreeze_Init() (GH-31596)Kumar Aditya2022-02-261-5/+11
* bpo-46852: Remove the float.__set_format__() method (GH-31585)Victor Stinner2022-02-252-142/+3
* bpo-46836: Rename InterpreterFrame to _PyInterpreterFrame (GH-31583)Victor Stinner2022-02-253-39/+39
* bpo-45316: Move private PyCode C API to internal C API (GH-31576)Victor Stinner2022-02-252-12/+12
* bpo-1635741: Fix winreg reference leaks (GH-31560)Victor Stinner2022-02-251-0/+8
* bpo-46852: Rename float.__set_format__() to float.__setformat__() (GH-31558)Victor Stinner2022-02-252-17/+17
* bpo-46656: Remove Py_NO_NAN macro (GH-31160)Victor Stinner2022-02-251-8/+0
* bpo-45459: C API uses type names rather than structure names (GH-31528)Victor Stinner2022-02-244-13/+12
* Add (undocumented) _co_quickened attribute for code object. (GH-31552)Mark Shannon2022-02-241-2/+13
* bpo-45412: Add _PY_SHORT_FLOAT_REPR macro (GH-31171)Victor Stinner2022-02-231-8/+8
* bpo-46765: Replace Locally Cached Strings with Statically Initialized Objects...Eric Snow2022-02-234-52/+10
* bpo-46729: add number of sub-exceptions in str() of BaseExceptionGroup (GH-31...Irit Katriel2022-02-221-1/+6
* dict: Add dk_log2_index_bytes (GH-31439)Inada Naoki2022-02-221-23/+27
* fix __bool__ docstring (GH-31301)Jelle Zijlstra2022-02-211-1/+1
* dict: Use DK_LOG_SIZE in hot loop. (GH-31405)Inada Naoki2022-02-191-12/+12
* bpo-46730: Fix refleak and tighten NULL checks (GH-31389)Christian Heimes2022-02-171-9/+18
* bpo-46745: Fix typo in PositionsIterator (#31322)Robert-André Mauchin2022-02-171-1/+1
* bpo-46730: Add more info to @property AttributeError messages (GH-31311)Alex-Blade2022-02-161-13/+27
* bpo-46541: Discover the global strings. (gh-31346)Eric Snow2022-02-152-2/+3
* Improve docstring for set.discard() (GH-31315)Raymond Hettinger2022-02-131-1/+2
* bpo-46615: Don't crash when set operations mutate the sets (GH-31120)Dennis Sweeney2022-02-111-8/+39
* bpo-46613: Add PyType_GetModuleByDef to the public API (GH-31081)Petr Viktorin2022-02-111-6/+2
* bpo-46430: Intern strings in deep-frozen modules (GH-30683)Kumar Aditya2022-02-091-0/+12
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-0830-610/+422
* bpo-46675: Allow object value arrays and split key dictionaries larger than 1...Mark Shannon2022-02-081-39/+59
* bpo-46670: Remove unused macros in the Objects directory (GH-31193)Victor Stinner2022-02-074-12/+0
* bpo-46670: Test if a macro is defined, not its value (GH-31178)Victor Stinner2022-02-071-3/+3
* bpo-46670: Define all macros for stringlib (GH-31176)Victor Stinner2022-02-0710-17/+24
* bpo-46670: Remove unused get_frame_state() function (GH-31177)Victor Stinner2022-02-071-9/+0
* Pass reference to func, as well as args, when pushing frame. (GH-31100)Mark Shannon2022-02-031-0/+2
* bpo-44977: Deprecate delegation of int to __trunc__ (GH-31031)Zackery Spytz2022-02-031-0/+5
* bpo-46433: _PyType_GetModuleByDef: handle static types in MRO (GH-30696)Petr Viktorin2022-02-021-5/+4
* bpo-46072: Add some frame stats. (GH-31060)Mark Shannon2022-02-021-0/+1
* bpo-46072: Add some object layout and allocation stats (GH-31051)Mark Shannon2022-02-012-0/+16
* bpo-46564: do not create frame object for super object (GH-31002)Kumar Aditya2022-02-011-12/+8
* bpo-46407: Fix long_mod refleak (GH-31025)Ken Jin2022-01-311-1/+1
* bpo-46417: _PyStructSequence_FiniType() updates _Py_RefTotal (GH-30988)Victor Stinner2022-01-281-0/+3
* bpo-46407: Optimizing some modulo operations (GH-30653)Crowthebird2022-01-281-9/+106
* bpo-40170: Remove PyHeapType_GET_MEMBERS() macro (GH-30942)Victor Stinner2022-01-271-6/+6
* bpo-40170: Move _Py_GetAllocatedBlocks() to pycore_pymem.h (GH-30943)Victor Stinner2022-01-271-3/+0
* bpo-46476: Simplify and fix _PyStaticCode_Dealloc (GH-30965)Christian Heimes2022-01-271-5/+8
* bpo-46476: Fix memory leak in code objects generated by deepfreeze (GH-30853)Kumar Aditya2022-01-271-0/+15
* bpo-40170: Remove _Py_GetAllocatedBlocks() function (GH-30940)Victor Stinner2022-01-271-1/+5