summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* gh-76785: Move the Cross-Interpreter Code to Its Own File (gh-111502)Eric Snow2023-10-301-0/+1
* gh-90815: Fix mimalloc build on WASI (#111524)Victor Stinner2023-10-301-0/+1
* gh-90815: Fix _PyMem_MimallocEnabled() compiler warning (#111522)Victor Stinner2023-10-301-6/+6
* gh-110481: Implement biased reference counting (gh-110764)Sam Gross2023-10-304-17/+132
* gh-90815: Add mimalloc memory allocator (#109914)Dino Viehland2023-10-3030-19/+13209
* GH-111339: Fix initialization and finalization of static optimizer types (GH-...Savannah Ostrowski2023-10-291-0/+6
* gh-89519: Remove classmethod descriptor chaining, deprecated since 3.11 (gh-1...Raymond Hettinger2023-10-271-4/+0
* gh-111354: define names for RESUME oparg values (#111365)Irit Katriel2023-10-261-1/+2
* gh-109094: replace frame->prev_instr by frame->instr_ptr (#109095)Irit Katriel2023-10-263-9/+37
* gh-100762: Fix optimization in gen_close (#111069)Irit Katriel2023-10-251-2/+3
* GH-94438: Restore ability to jump over None tests (GH-111237)Savannah Ostrowski2023-10-241-0/+2
* gh-109894: Fix initialization of static `MemoryError` in subinterpreter (gh-1...Radislav Chugunov2023-10-231-4/+0
* gh-67565: Remove redundant C-contiguity checks (GH-105521)Furkan Onder2023-10-232-58/+2
* gh-111089: PyUnicode_AsUTF8AndSize() sets size on error (#111106)Victor Stinner2023-10-201-1/+8
* gh-111089: PyUnicode_AsUTF8() now raises on embedded NUL (#111091)Victor Stinner2023-10-202-3/+10
* gh-110964: Remove private _PyArg functions (#110966)Victor Stinner2023-10-1730-26/+59
* gh-110864: TypeVar constructor: Partially revert gh-110784, `constraints` can...Nikita Sobolev2023-10-161-20/+14
* gh-110907: AC: Disallow using `*` with vararg (#110908)Nikita Sobolev2023-10-162-4/+3
* gh-110525: Delete `test_c_api` method from `set` object (#110688)Nikita Sobolev2023-10-131-153/+0
* gh-110782: Fix crash when TypeVar is constructed with keyword args (#110784)Jelle Zijlstra2023-10-121-18/+20
* gh-110289: C API: Add PyUnicode_EqualToUTF8() and PyUnicode_EqualToUTF8AndSiz...Serhiy Storchaka2023-10-111-0/+76
* GH-104584: Fix refleak when tracing through calls (GH-110593)Brandt Bucher2023-10-101-1/+1
* gh-76785: Add SendChannel.send_buffer() (#110246)Eric Snow2023-10-091-0/+22
* gh-110222: Add support of PyStructSequence in copy.replace() (GH-110223)Xuehai Pan2023-10-041-1/+75
* gh-110235: Raise TypeError for duplicate/unknown fields in PyStructSequence c...Xuehai Pan2023-10-041-7/+22
* gh-107073: Make PyObject_VisitManagedDict() public (#108763)Victor Stinner2023-10-023-13/+13
* gh-110014: Include explicitly <unistd.h> header (#110155)Victor Stinner2023-09-301-7/+11
* gh-110079: Remove extern "C" { ...} in C code (#110080)Victor Stinner2023-09-293-27/+0
* gh-109611: Add convenient C API function _PyFile_Flush() (GH-109612)Serhiy Storchaka2023-09-231-0/+12
* GH-107265: Add missing deoptimizations for ENTER_EXECUTOR's original opcode (...Tian Gao2023-09-221-1/+1
* gh-109693: Remove pycore_atomic_funcs.h (#109694)Sam Gross2023-09-211-4/+3
* Fix typos in docs and comments (#109619)Heinz-Alexander Fuetterer2023-09-201-1/+1
* fixes gh-109559: Update `unicodedata` for Unicode 15.1.0 (GH-109560)James Gerity2023-09-201-950/+1013
* gh-108511: Add C API functions which do not silently ignore errors (GH-109025)Serhiy Storchaka2023-09-176-69/+73
* gh-106213: Make Emscripten trampolines work with JSPI (GH-106219)Hood Chatham2023-09-152-26/+1
* Add missing `PyDoc_STR` calls (#109393)Nikita Sobolev2023-09-153-4/+5
* Add missing PyDoc_STR to GenericAlias.__parameters__ (#108811)James Hilton-Balfe2023-09-141-1/+1
* GH-105848: Replace KW_NAMES + CALL with LOAD_CONST + CALL_KW (GH-109300)Brandt Bucher2023-09-131-12/+2
* gh-109174: Add support of SimpleNamespace in copy.replace() (GH-109175)Serhiy Storchaka2023-09-101-0/+28
* gh-109052: Use the base opcode when comparing code objects (gh-109107)Tian Gao2023-09-091-6/+4
* GH-108716: Turn off deep-freezing of code objects. (GH-108722)Mark Shannon2023-09-082-9/+7
* gh-108732: include comprehension locals in frame.f_locals (#109026)Carl Meyer2023-09-071-4/+10
* GH-108614: Add `RESUME_CHECK` instruction (GH-108630)Mark Shannon2023-09-071-1/+5
* gh-108915: Removes extra backslashes in str.split docstring (#109044)Daniel Weiss2023-09-072-5/+5
* gh-107265: Remove all ENTER_EXECUTOR when execute _Py_Instrument (gh-108539)Dong-hee Na2023-09-071-0/+17
* gh-108751: Add copy.replace() function (GH-108752)Serhiy Storchaka2023-09-061-0/+1
* gh-106307: Fix PyMapping_GetOptionalItemString() (GH-108797)Serhiy Storchaka2023-09-061-0/+2
* gh-108991: replace _PyFrame_GetState by two simpler functions (#108992)Irit Katriel2023-09-061-31/+20
* gh-108765: Python.h no longer includes <ctype.h> (#108831)Victor Stinner2023-09-034-10/+4
* gh-108767: Replace ctype.h functions with pyctype.h functions (#108772)Victor Stinner2023-09-011-4/+4