summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* gh-89770: Implement PEP-678 - Exception notes (GH-31317)Irit Katriel2022-04-161-43/+80
* gh-91266: refactor bytearray strip methods (GH-32096)Pieter Eendebak2022-04-141-85/+40
* gh-91502: Add a new API to check if a frame is an entry frame (GH-91503)Pablo Galindo Salgado2022-04-131-0/+8
* gh-91421: Use constant value check during runtime (GH-91422)Tobias Stoeckmann2022-04-131-1/+1
* gh-91117: Ensure integer mod and pow operations use cached small ints (GH-31843)Dennis Sweeney2022-04-111-0/+2
* GH-89480: Document motivation, design and implementation of 3.11 frame stack....Mark Shannon2022-04-111-0/+122
* bpo-45995: add "z" format specifer to coerce negative 0 to zero (GH-30049)John Belmonte2022-04-112-6/+13
* bpo-47120: make POP_JUMP_IF_TRUE/FALSE/NONE/NOT_NONE relative (GH-32400)Irit Katriel2022-04-111-2/+12
* Fix bad grammar and import docstring for split/rsplit (GH-32381)Raymond Hettinger2022-04-082-22/+37
* Add new PyFrame_GetLasti C-API function (GH-32413)Mark Shannon2022-04-081-1/+11
* bpo-47250: Fix refleak from object.__getstate__() (GH-32403)Dong-hee Na2022-04-071-1/+0
* bpo-47177: Replace `f_lasti` with `prev_instr` (GH-32208)Brandt Bucher2022-04-073-29/+27
* bpo-35134: Remove the Include/code.h header file (GH-32385)Victor Stinner2022-04-071-1/+0
* bpo-26579: Add object.__getstate__(). (GH-2821)Serhiy Storchaka2022-04-065-145/+172
* bpo-46721: Optimize set.issuperset() for non-set arguments (GH-31280)Serhiy Storchaka2022-04-061-16/+23
* bpo-43464: Optimize set.intersection() for non-set arguments (GH-31316)Serhiy Storchaka2022-04-061-0/+4
* bpo-47120: make JUMP_NO_INTERRUPT relative (GH-32221)Irit Katriel2022-04-051-9/+5
* bpo-47186: Replace JUMP_IF_NOT_EG_MATCH by CHECK_EG_MATCH + jump (GH-32309)Irit Katriel2022-04-051-8/+2
* no-issue: Add assertion to PyModule_GetName for understanding (GH-32236)Dong-hee Na2022-04-021-1/+3
* bpo-47186: Replace JUMP_IF_NOT_EXC_MATCH by CHECK_EXC_MATCH + jump (GH-32231)Irit Katriel2022-04-011-3/+1
* bpo-46841: Use a `bytes` object for `_co_code_adaptive` (GH-32205)Brandt Bucher2022-04-011-2/+2
* bpo-46841: Avoid unnecessary allocations in code object comparisons (GH-32222)Brandt Bucher2022-04-011-13/+13
* bpo-47009: Streamline list.append for the common case (GH-31864)Dennis Sweeney2022-04-011-18/+18
* bpo-40421: Add missing getters for frame object attributes to C-API. (GH-32114)Mark Shannon2022-03-311-0/+22
* bpo-47182: Fix crash by named unicode characters after interpreter reinitiali...Christian Heimes2022-03-311-0/+3
* bpo-14911: Corrected generator.throw() documentation (GH-32207)Dave Goncalves2022-03-311-4/+10
* bpo-47120: Replace the JUMP_ABSOLUTE opcode by the relative JUMP_BACKWARD (GH...Irit Katriel2022-03-311-1/+6
* bpo-47164: Add _PyASCIIObject_CAST() macro (GH-32191)Victor Stinner2022-03-314-37/+34
* bpo-47162: Add call trampoline to mitigate bad fpcasts on Emscripten (GH-32189)Christian Heimes2022-03-303-12/+48
* bpo-46775: OSError should call winerror_to_errno unconditionally on Windows (...Dong-hee Na2022-03-301-8/+1
* bpo-47070: Add _PyBytes_Repeat() (GH-31999)Pieter Eendebak2022-03-283-72/+47
* bpo-47116: use _PyLong_FromUnsignedChar instead of PyLong_FromLong (GH-32110)Pieter Eendebak2022-03-262-5/+5
* bpo-42197: Don't create `f_locals` dictionary unless we actually need it. (GH...Mark Shannon2022-03-251-6/+17
* bpo-47012: speed up iteration of bytes and bytearray (GH-31867)Kumar Aditya2022-03-232-7/+4
* bpo-47045: Remove `f_state` field (GH-31963)Mark Shannon2022-03-222-93/+130
* bpo-47084: Clear Unicode cached representations on finalization (GH-32032)Jeremy Kloth2022-03-221-0/+44
* bpo-47067: Optimize calling GenericAlias objects (GH-31996)penguin_wwy2022-03-211-7/+32
* bpo-46841: Quicken code in-place (GH-31888)Brandt Bucher2022-03-215-137/+149
* bpo-45786: Remove _PyFrame_Fini() and _PyFrame_DebugMallocStats() (GH-31874)Victor Stinner2022-03-182-12/+0
* bpo-47005: Improve performance of bytearray_repeat and bytearray_irepeat (GH-...Pieter Eendebak2022-03-171-6/+22
* bpo-46841: Don't scan backwards in bytecode (GH-31901)Mark Shannon2022-03-161-2/+5
* bpo-46993: Speed up bytearray creation from list and tuple (GH-31834)Kumar Aditya2022-03-151-2/+27
* bpo-43721: Fix docstrings for property.getter/setter/deleter (GH-31046)Irit Katriel2022-03-141-3/+3
* bpo-46920: Remove disabled debug code added decades ago and likely unnecessa...Oleg Iarygin2022-03-141-13/+0
* bpo-46920: Remove code that has no explainer why it was disabled (GH-31814)Oleg Iarygin2022-03-141-17/+1
* bpo-39829: Fix `__len__()` is called twice in list() constructor (GH-31816)Crowthebird2022-03-141-17/+12
* bpo-43224: Implement PEP 646 changes to genericaliasobject.c (GH-31019)Matthew Rahtz2022-03-121-0/+75
* bpo-46906: Add PyFloat_Pack8() to the C API (GH-31657)Victor Stinner2022-03-111-7/+13
* bpo-46944: use FASTCALL calling convention in generator.throw (GH-31723)Kumar Aditya2022-03-111-14/+23
* bpo-46881: Fix refleak from GH-31616 (GH-31805)Jelle Zijlstra2022-03-111-2/+4