summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Revert "bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offset...Pablo Galindo2021-06-085-4184/+4142
* Fix compiler errors for unused variables (GH-26601)Pablo Galindo2021-06-081-0/+1
* bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offsets. (gh-2...Eric Snow2021-06-075-4142/+4184
* bpo-41299: Reduce lag in Windows threading timeouts by using a higher precisi...Ryan Hileman2021-06-071-4/+10
* bpo-43693: Un-revert commits 2c1e258 and b2bf2bc. (gh-26577)Eric Snow2021-06-078-5409/+5397
* bpo-44187: Quickening infrastructure (GH-26264)Mark Shannon2021-06-074-7/+261
* bpo-43693: Revert commits 2c1e2583fdc4db6b43d163239ea42b0e8394171f and b2bf2b...Pablo Galindo2021-06-048-5395/+5409
* bpo-43693: Compute deref offsets in compiler (gh-25152)Mark Shannon2021-06-044-155/+164
* bpo-32280: Store _PyRuntime in a named section (GH-4802)Max Bélanger2021-06-031-2/+28
* bpo-11105: Do not crash when compiling recursive ASTs (GH-20594)Batuhan Taskaya2021-06-031-0/+808
* bpo-43693: Add new internal code objects fields: co_fastlocalnames and co_fas...Eric Snow2021-06-038-5389/+5366
* bpo-44298: Fix line numbers for early exits in with statements. (GH-26513)Mark Shannon2021-06-033-2971/+2981
* bpo-17792: more accurate error message for unbound variable access exceptions...Irit Katriel2021-06-021-3/+3
* bpo-43693: Add _PyCode_New(). (gh-26375)Eric Snow2021-05-276-4435/+4415
* bpo-43693: Clean up the PyCodeObject fields. (GH-26364)Eric Snow2021-05-261-9/+8
* bpo-43879: Add native_thread_id field to PyThreadState (GH-25458)Gabriele N. Tornetta2021-05-261-0/+5
* bpo-44156: Make cached string constants in compile.c subinterpreter compatibl...Ken Jin2021-05-251-52/+44
* bpo-44032: Delay deletion of stack chunks until thread state is deleted. (GH-...Mark Shannon2021-05-241-7/+7
* bpo-28307: Tests and fixes for optimization of C-style formatting (GH-26318)Serhiy Storchaka2021-05-231-8/+19
* bpo-44032: Move data stack to thread from FrameObject. (GH-26076)Mark Shannon2021-05-214-86/+206
* bpo-44131: Py_FrozenMain() uses PyConfig_SetBytesArgv() (GH-26201)Victor Stinner2021-05-201-70/+14
* Remove unused function in ceval.c (GH-26246)Pablo Galindo2021-05-191-9/+0
* bpo-44131: Test Py_FrozenMain() (GH-26126)Victor Stinner2021-05-171-10/+16
* bpo-26110: Add ``CALL_METHOD_KW`` opcode to speedup method calls with keyword...Ken Jin2021-05-156-179/+240
* bpo-28146: Fix a confusing error message in str.format() (GH-24213)Irit Katriel2021-05-131-2/+8
* bpo-44094: Remove deprecated PyErr_ APIs. (GH-26011)Inada Naoki2021-05-131-36/+0
* bpo-44113: Update fromzenmain not to use Py_SetProgramName (GH-26085)Dong-hee Na2021-05-131-2/+8
* bpo-44113: Fix compiler warning in PySys_AddWarnOption() (GH-26084)Victor Stinner2021-05-131-0/+3
* Remove PyTryblock struct (GH-26059)Mark Shannon2021-05-121-26/+17
* bpo-43933: Force RETURN_VALUE bytecodes to have line numbers (GH-26054)Mark Shannon2021-05-123-2939/+2969
* Prevent access outside buffer (GH-26012)Dennis Sweeney2021-05-101-3/+5
* bpo-28307: Convert simple C-style formatting with literal format into f-strin...Serhiy Storchaka2021-05-082-2164/+2383
* bpo-44063: set the missing end locations on the compiler (GH-25956)Batuhan Taskaya2021-05-071-5/+13
* bpo-40222: "Zero cost" exception handling (GH-25729)Mark Shannon2021-05-078-5291/+5951
* bpo-40943: Fix skipitem() didn't raise SystemError (GH-25937)Inada Naoki2021-05-071-8/+5
* bpo-38530: Refactor and improve AttributeError suggestions (GH-25776)Dennis Sweeney2021-05-031-59/+130
* bpo-43754: Fix compiler warning in Python/compile.c (GH-25855)Pablo Galindo2021-05-031-1/+1
* bpo-43916: Move the _PyStructSequence_InitType function to the internal API (...Pablo Galindo2021-05-031-0/+1
* bpo-42725: Render annotations effectless on symbol table with PEP 563 (GH-25583)Batuhan Taskaya2021-05-031-10/+91
* bpo-43754: Eliminate bindings for partial pattern matches (GH-25229)Brandt Bucher2021-05-024-340/+483
* bpo-43933: Set frame.f_lineno during call to __exit__ (GH-25719)Mark Shannon2021-04-304-2950/+2956
* bpo-43667: Fix broken Unicode encoding in non-UTF locales on Solaris (GH-25096)Jakub Kulík2021-04-301-0/+106
* bpo-43916: PyStdPrinter_Type uses Py_TPFLAGS_DISALLOW_INSTANTIATION (GH-25749)Victor Stinner2021-04-301-1/+1
* bpo-43916: Add Py_TPFLAGS_DISALLOW_INSTANTIATION type flag (GH-25721)Victor Stinner2021-04-301-30/+9
* bpo-43977: Use tp_flags for collection matching (GH-25723)Mark Shannon2021-04-302-66/+8
* bpo-43892: Validate the first term of complex literal value patterns (GH-25735)Brandt Bucher2021-04-302-38/+20
* bpo-42800: Rename AUDIT_READ to PY_AUDIT_READ (GH-25736)Steve Dower2021-04-301-1/+1
* bpo-42800: add audit hooks for f_code and tb_frame (GH-24182)Ryan Hileman2021-04-291-1/+1
* bpo-42739: Don't use sentinels to mark end of line table. (GH-25657)Mark Shannon2021-04-295-4952/+4921
* bpo-43892: Make match patterns explicit in the AST (GH-25585)Nick Coghlan2021-04-297-488/+1498