summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* gh-95778: add doc missing in some places (GH-100627)Éric2022-12-301-0/+2
* gh-100577: Replace `assert(0)` with `Py_UNREACHABLE` in `symtable.c` (#100579)Nikita Sobolev2022-12-281-1/+1
* GH-98831: Modernize a ton of simpler instructions (#100545)Guido van Rossum2022-12-282-342/+230
* gh-100357: Convert several functions in `bltinsmodule` to AC (#100358)Nikita Sobolev2022-12-242-99/+303
* gh-99947: Ensure unreported errors are chained for SystemError during import ...Sebastian Berg2022-12-231-2/+1
* GH-100425: Improve accuracy of builtin sum() for float inputs (GH-100426)Raymond Hettinger2022-12-231-1/+20
* Revert "gh-100288: Specialise LOAD_ATTR_METHOD for managed dictionaries (GH-1...Ken Jin2022-12-234-70/+15
* gh-100288: Specialise LOAD_ATTR_METHOD for managed dictionaries (GH-100289)Ken Jin2022-12-234-15/+70
* GH-100459: fix copy-paste errors in specialization stats (GH-100460)Irit Katriel2022-12-231-5/+5
* GH-99554: Trim trailing whitespace (GH-100435)Brandt Bucher2022-12-221-1/+1
* GH-99770: Make the correct call specialization fail kind show up in the stats...penguin_wwy2022-12-221-63/+84
* gh-99761: Add `_PyLong_IsPositiveSingleDigit` function to check for single di...Pieter Eendebak2022-12-222-10/+6
* GH-99554: Pack location tables more effectively (GH-99556)Brandt Bucher2022-12-221-23/+44
* gh-100188: Reduce misses in BINARY_SUBSCR_(LIST/TUPLE)_INT (#100189)Dennis Sweeney2022-12-201-4/+12
* Correct CVE-2020-10735 documentation (#100306)Jeremy Paige2022-12-182-4/+4
* gh-99240: Reset pointer to NULL when the pointed memory is freed in argument ...colorfulappl2022-12-171-5/+5
* GH-98831: Add DECREF_INPUTS(), expanding to DECREF() each stack input (#100205)Guido van Rossum2022-12-171-18/+13
* GH-90043: Handle NaNs in COMPARE_OP_FLOAT_JUMP (GH-100278)Brandt Bucher2022-12-163-24/+21
* Improve stats presentation for calls. (GH-100274)Mark Shannon2022-12-161-37/+22
* Better stats for `LOAD_ATTR` and `STORE_ATTR` (GH-100295)Mark Shannon2022-12-161-12/+35
* Move stats for the method cache into the `Py_STAT` machinery (GH-100255)Mark Shannon2022-12-151-0/+5
* GH-100222: fix typo _py_set_opocde -> _py_set_opcode (GH-100259)Carl Meyer2022-12-151-65/+65
* GH-100000: Cleanup and polish various watchers code (GH-99998)Itamar Ostricher2022-12-141-0/+4
* Assorted minor fixes for specialization stats. (GH-100219)Mark Shannon2022-12-141-17/+34
* GH-100222: Redefine _Py_CODEUNIT as a union to clarify structure of code unit...Mark Shannon2022-12-144-91/+101
* gh-99955: undef ERROR and SUCCESS before redefining (fixes sanitizer warning)...Irit Katriel2022-12-131-0/+2
* gh-81057: Move Signal-Related Globals to _PyRuntimeState (gh-100085)Eric Snow2022-12-121-1/+0
* GH-100143: Improve collecting pystats for parts of runs (GH-100144)Michael Droettboom2022-12-122-6/+16
* gh-99955: standardize return values of functions in compiler's code-gen (#100...Irit Katriel2022-12-121-760/+694
* gh-96715 Remove redundant NULL check in `profile_trampoline` function (#96716)chgnrdv2022-12-121-4/+0
* gh-81057: Fix the wasm32-wasi Buildbot (gh-100139)Eric Snow2022-12-091-1/+2
* GH-98522: Add version number to code objects. (GH-98525)Mark Shannon2022-12-092-0/+2
* GH-100110: Specialize FOR_ITER for tuples (GH-100109)Ken Jin2022-12-094-12/+62
* gh-81057: Move Threading-Related Globals to _PyRuntimeState (#100084)Eric Snow2022-12-094-48/+24
* gh-81057: Move Ceval Trampoline Globals to _PyRuntimeState (gh-100083)Eric Snow2022-12-091-30/+14
* GH-98831: Generate things in the input order (#100123)Guido van Rossum2022-12-081-237/+237
* gh-81057: Move time Globals to _PyRuntimeState (gh-100122)Eric Snow2022-12-081-0/+5
* GH-98831: Typed stack effects, and more instructions converted (#99764)Guido van Rossum2022-12-082-469/+366
* gh-81057: Move More Globals to _PyRuntimeState (gh-100092)Eric Snow2022-12-072-14/+8
* GH-99729: Unlink frames before clearing them (GH-100030)Brandt Bucher2022-12-064-11/+15
* gh-99741: Implement Multi-Phase Init for the _xxsubinterpreters Module (gh-99...Eric Snow2022-12-051-56/+128
* bpo-15999: Accept arbitrary values for boolean parameters. (#15609)Serhiy Storchaka2022-12-032-5/+5
* GH-98831: Support cache effects in super- and macro instructions (#99601)Guido van Rossum2022-12-031-2/+2
* gh-99741: Clean Up the _xxsubinterpreters Module (gh-99940)Eric Snow2022-12-021-9/+11
* gh-99955: standardize return values of functions in assembler and optimizer. ...Irit Katriel2022-12-021-42/+54
* gh-99741: Fix the Cross-Interpreter Data API (gh-99939)Eric Snow2022-12-021-23/+84
* GH-91054: Add code object watchers API (GH-99859)Itamar Ostricher2022-12-021-0/+5
* gh-89189: More compact range iterator (GH-27986)Serhiy Storchaka2022-11-302-6/+8
* GH-99877)Irit Katriel2022-11-301-23/+41
* gh-87092: move all localsplus preparation into separate function called from ...Irit Katriel2022-11-301-30/+41