summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* gh-106290: Fix edge cases around uops (#106319)Guido van Rossum2023-07-034-228/+263
* gh-106320: Remove private _PyErr C API functions (#106356)Victor Stinner2023-07-031-0/+1
* gh-106320: Create pycore_modsupport.h header file (#106355)Victor Stinner2023-07-033-1/+4
* Document PYTHONSAFEPATH along side -P (#106122)Jeremy Paige2023-07-031-2/+2
* gh-106320: Use _PyInterpreterState_GET() (#106336)Victor Stinner2023-07-024-14/+11
* gh-104922: remove PY_SSIZE_T_CLEAN (#106315)Inada Naoki2023-07-021-2/+0
* gh-106320: Remove private _PyInterpreterState functions (#106325)Victor Stinner2023-07-023-4/+6
* gh-106320: Remove _PyInterpreterState_Get() alias (#106321)Victor Stinner2023-07-014-13/+13
* gh-106316: Remove pytime.h header file (#106317)Victor Stinner2023-07-011-0/+1
* Fix duplicate word typos in comments (#106225)Md Sadman Chowdhury2023-07-011-1/+1
* gh-106149: move unconditional jump direction resolution from optimizer to ass...Irit Katriel2023-07-013-18/+42
* gh-106145: Make `end_{lineno,col_offset}` required on `type_param` nodes (#10...Nikita Sobolev2023-06-301-12/+6
* gh-106267: Add type cast to generated code (#106289)Kirill Podoprigora2023-06-301-1/+1
* gh-106280: Remove unnecessary unreachable code (gh-106285)Dong-hee Na2023-06-301-3/+0
* gh-106023: Remove _PyObject_FastCallTstate() function (#106273)Victor Stinner2023-06-301-7/+5
* Remove private _PyCodec_Lookup() function (#106269)Victor Stinner2023-06-301-0/+1
* gh-106182: sys: Intern getfilesystemencoding() and getfilesystemencodeerrors(...Inada Naoki2023-06-301-5/+25
* fix typos (#106247)Inada Naoki2023-06-302-2/+2
* gh-106023: Update code using _PyObject_FastCall() (#106257)Victor Stinner2023-06-306-422/+415
* gh-106210 Remove Emscripten import trampoline (#106211)Hood Chatham2023-06-303-19/+3
* GH-106008: Make implicit boolean conversions explicit (GH-106003)Brandt Bucher2023-06-298-903/+1397
* gh-105775: Convert LOAD_CLOSURE to a pseudo-op (#106059)hms2023-06-297-661/+652
* gh-101006: Improve error handling when read marshal data (GH-101007)Serhiy Storchaka2023-06-291-61/+71
* gh-104584: Emit macro expansions to opcode_metadata.h (#106163)Guido van Rossum2023-06-283-6/+40
* gh-106118: Add O_CLOEXEC preprocessor guard (#106120)Erlend E. Aasland2023-06-281-1/+4
* gh-106084: Remove _PyObject_CallMethod() function (#106159)Victor Stinner2023-06-271-1/+2
* gh-104584: Change DEOPT_IF in uops executor (#106146)Guido van Rossum2023-06-272-12/+7
* gh-106149: move jump target resolution from optimizer to assembler (#106150)Irit Katriel2023-06-273-100/+108
* gh-104584: Fix assert in DEOPT macro -- should fix buildbot (#106131)Guido van Rossum2023-06-271-1/+2
* gh-104584: Add #line directives to executor_cases.c.h (#106126)Guido van Rossum2023-06-271-0/+254
* gh-104584: Baby steps towards generating and executing traces (#105924)Guido van Rossum2023-06-279-271/+2326
* gh-106084: Remove old PyObject call aliases (#106085)Victor Stinner2023-06-265-7/+7
* gh-106033: Get rid of new occurrences of PyDict_GetItem and PyObject_HasAttr ...Serhiy Storchaka2023-06-231-7/+5
* gh-106030: Miscellaneous fixes in Python/suggestions.c (GH-106031)Serhiy Storchaka2023-06-231-15/+27
* GH-106012: Fix monitoring of static code objects (GH-106017)Mark Shannon2023-06-231-13/+18
* gh-105927: PyImport_AddModule() uses _PyWeakref_GET_REF() (#106001)Victor Stinner2023-06-221-3/+19
* gh-105922: Use PyImport_AddModuleRef() function (#105999)Victor Stinner2023-06-222-3/+2
* gh-105979: Fix exception handling in `unmarshal_frozen_code` (`Python/import....chgnrdv2023-06-221-0/+1
* gh-105927: Avoid calling PyWeakref_GET_OBJECT() (#105997)Victor Stinner2023-06-221-3/+6
* gh-101538: Add experimental wasi-threads build (#101537)YAMAMOTO Takashi2023-06-221-0/+8
* GH-91095: Specialize calls to normal Python classes. (GH-99331)Mark Shannon2023-06-228-107/+346
* gh-105927: finalize_modules_clear_weaklist() uses _PyWeakref_GET_REF() (#105971)Victor Stinner2023-06-211-4/+5
* gh-105922: Add PyImport_AddModuleRef() function (#105923)Victor Stinner2023-06-202-12/+31
* gh-105922: Refactor PyRun_InteractiveOneObjectEx() (#105925)Victor Stinner2023-06-191-74/+108
* gh-105481: generate _specializations and _specialized_instructions from bytec...Irit Katriel2023-06-193-53/+55
* gh-105908: fix `barry_as_FLUFL` future import (#105909)Crowthebird2023-06-191-6/+10
* GH-104584: Assorted fixes for the optimizer API. (GH-105683)Mark Shannon2023-06-193-191/+210
* gh-105481: remove HAS_ARG, HAS_CONST, IS_JUMP_OPCODE, IS_PSEUDO_OPCODE and re...Irit Katriel2023-06-174-27/+19
* GH-105840: Fix assertion failures when specializing calls with too many __def...Brandt Bucher2023-06-161-2/+2
* GH-105588: Add missing error checks to some obj2ast_* converters (GH-105589)Brandt Bucher2023-06-151-0/+7