summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-45020: Drop the frozen .h files from the repo. (gh-28392)Eric Snow2021-09-1612-14430/+0
* bpo-45020: Revert "Drop the frozen .h files from the repo." (gh-28380)Eric Snow2021-09-1611-0/+14405
* bpo-45020: Drop the frozen .h files from the repo. (gh-28375)Eric Snow2021-09-1612-14425/+0
* bpo-45019: Clean up the frozen __hello__ module. (gh-28374)Eric Snow2021-09-154-21/+32
* bpo-45020: Freeze some of the modules imported during startup. (gh-28335)Eric Snow2021-09-1510-0/+6787
* bpo-45203: Cleanup stats gathering code for LOAD_METHOD (GH-28352)Mark Shannon2021-09-151-41/+39
* bpo-21302: Add _PyTime_AsNanoseconds() (GH-28350)Victor Stinner2021-09-151-123/+188
* bpo-45020: Add -X frozen_modules=[on|off] to explicitly control use of frozen...Eric Snow2021-09-144-13/+174
* bpo-45152: Add HAS_CONST macro and get_const_value() function and use… (#28...Irit Katriel2021-09-141-7/+39
* bpo-45019: Do some cleanup related to frozen modules. (gh-28319)Eric Snow2021-09-135-2/+80
* bpo-43413: Fix handling keyword arguments in subclasses of some buitin classe...Serhiy Storchaka2021-09-121-2/+4
* bpo-44219: Release the GIL during isatty syscalls (GH-28250)Vincent Michel2021-09-091-2/+14
* bpo-44959: Add fallback to extension modules with '.sl' suffix on HP-UX (GH-2...Florin Spătar2021-09-081-1/+1
* bpo-45123: PyAiter_Check and PyObject_GetAiter fix & rename. (GH-28194)Yury Selivanov2021-09-071-1/+1
* bpo-41031: Match C and Python code formatting of unprintable exceptions and e...Irit Katriel2021-09-052-2/+6
* bpo-45094: Add Py_NO_INLINE macro (GH-28140)Victor Stinner2021-09-031-1/+1
* bpo-34602: Quadruple stack size on macOS when compiling with UBSAN (GH-27309)Łukasz Langa2021-09-031-7/+6
* bpo-45083: Include the exception class qualname when formatting an exception ...Irit Katriel2021-09-032-35/+35
* bpo-45056: Remove trailing unused constants from co_consts (GH-28109)Inada Naoki2021-09-024-6318/+6348
* bpo-45085: Remove the binhex module (GH-28117)Victor Stinner2021-09-021-1/+0
* bpo-45039: Consistently use ADDOP_LOAD_CONST in compiler rather than ADDOP_O(...Irit Katriel2021-08-311-2/+4
* bpo-37596: Clean up the set/frozenset marshalling code (GH-28068)Brandt Bucher2021-08-311-8/+11
* bpo-45061: Enhance faulthandler traceback wit no Python frame (GH-28090)Victor Stinner2021-08-311-1/+1
* bpo-45019: Add a tool to generate list of modules to include for frozen modul...Eric Snow2021-08-305-29/+57
* bpo-45045: Optimize mapping patterns of structural pattern matching (GH-28043)Dong-hee Na2021-08-301-6/+17
* Refine specialization stats (GH-27992)Mark Shannon2021-08-271-17/+89
* bpo-44945: Specialize BINARY_ADD (GH-27967)Mark Shannon2021-08-273-46/+195
* bpo-45000: Raise SyntaxError when try to delete __debug__ (GH-27947)Dong-hee Na2021-08-251-0/+4
* bpo-44990: Change layout of evaluation frames. "Layout B" (GH-27933)Mark Shannon2021-08-253-66/+62
* Format the Python-tokenize module and fix exit path (GH-27935)Pablo Galindo Salgado2021-08-251-47/+46
* bpo-37596: Make `set` and `frozenset` marshalling deterministic (GH-27926)Brandt Bucher2021-08-251-0/+32
* Add tests for the C tokenizer and expose it as a private module (GH-27924)Pablo Galindo Salgado2021-08-243-0/+237
* bpo-44895: Introduce PYTHONDUMPREFSFILE variable for refcount dumping (GH-27767)Dong-hee Na2021-08-172-0/+29
* bpo-44889: Specialize LOAD_METHOD with PEP 659 adaptive interpreter (GH-27722)Ken Jin2021-08-173-37/+319
* bpo-44900: Add five superinstructions. (GH-27741)Mark Shannon2021-08-163-19/+115
* bpo-43392: Optimize repeated calls to `__import__()` (GH-24735)Germán Méndez Bravo2021-08-121-512/+519
* bpo-44885: Correct the ast locations of f-strings with format specs and repea...Pablo Galindo Salgado2021-08-123-42/+42
* bpo-44890: collect specialization stats if Py_DEBUG (GH-27731)Irit Katriel2021-08-122-7/+7
* bpo-44878: Remove loop from interpreter. All dispatching is done by gotos. (G...Mark Shannon2021-08-121-14/+17
* Update test__opcode and _Py_GetSpecializationStats with recent specialization...Irit Katriel2021-08-111-0/+1
* bpo-44878: Remove the switch from the main interpreter loop when using comput...Mark Shannon2021-08-111-177/+206
* bpo-44878: _PyEval_EvalFrameDefault readability improvements (GH-27725)Mark Shannon2021-08-111-51/+49
* Add missing DISPATCH() (GH-27715)Mark Shannon2021-08-111-0/+2
* Classify specialization failures. Provides more useful stats, with lower over...Mark Shannon2021-08-101-96/+83
* Fix stats for STORE_ATTR specialization. (GH-27708)Mark Shannon2021-08-101-0/+2
* bpo-25782: avoid hang in PyErr_SetObject when current exception has a cycle i...Irit Katriel2021-08-101-1/+15
* bpo-44854: Remove trailing whitespaces (GH-27689)Serhiy Storchaka2021-08-091-2/+2
* Remove unused variable. (GH-27677)Mark Shannon2021-08-091-3/+0
* bpo-44826: Specialize STORE_ATTR (GH-27590)Mark Shannon2021-08-093-78/+311
* bpo-44840: Compiler: Move duplication of exit blocks with no line numbers to ...Mark Shannon2021-08-094-6645/+6638