| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-126579: Adapt sys.audit() to Argument Clinic (GH-126580) | Serhiy Storchaka | 2024-11-08 | 1 | -1/+50 |
|
|
* | gh-122943: Add the varpos parameter in _PyArg_UnpackKeywords (GH-126564) | Serhiy Storchaka | 2024-11-08 | 8 | -34/+60 |
|
|
* | gh-122943: Remove the object converter for var-positional parameter (GH-126560) | Serhiy Storchaka | 2024-11-08 | 1 | -13/+9 |
|
|
* | gh-122943: Rework support of var-positional parameter in Argument Clinic (GH-... | Serhiy Storchaka | 2024-11-07 | 1 | -12/+19 |
|
|
* | gh-116750: Add clear_tool_id function to unregister events and callbacks (#12... | Tian Gao | 2024-10-01 | 1 | -1/+28 |
|
|
* | gh-113993: Allow interned strings to be mortal, and fix related issues (GH-12... | Petr Viktorin | 2024-06-21 | 1 | -6/+46 |
|
|
* | gh-111201: A new Python REPL (GH-111567) | Pablo Galindo Salgado | 2024-05-05 | 1 | -1/+19 |
|
|
* | gh-117514: Add `sys._is_gil_enabled()` function (#118514) | Sam Gross | 2024-05-03 | 1 | -1/+29 |
|
|
* | gh-105879: Add support for keyword arguments to eval and exec (#105885) | Raphael Gaschignard | 2024-05-02 | 1 | -24/+59 |
|
|
* | gh-117680: make _PyInstructionSequence a PyObject and use it in tests (#117629) | Irit Katriel | 2024-04-17 | 1 | -0/+304 |
|
|
* | gh-117764: Fix and add signatures for many builtins (GH-117769) | Serhiy Storchaka | 2024-04-12 | 2 | -8/+8 |
|
|
* | gh-117764: Add signatures for some functions in the sys module (GH-117770) | Serhiy Storchaka | 2024-04-12 | 1 | -5/+29 |
|
|
* | GH-114695: Add `sys._clear_internal_caches` (GH-115152) | Brandt Bucher | 2024-02-12 | 1 | -1/+19 |
|
|
* | gh-76763: Make chr() always raising ValueError for out-of-range values (GH-11... | Serhiy Storchaka | 2024-02-10 | 1 | -20/+1 |
|
|
* | gh-113626: Add allow_code parameter in marshal functions (GH-113648) | Serhiy Storchaka | 2024-01-16 | 1 | -26/+212 |
|
|
* | bpo-34392: Add sys. _is_interned() (GH-8755) | Serhiy Storchaka | 2023-12-04 | 1 | -1/+35 |
|
|
* | gh-111089: Revert PyUnicode_AsUTF8() changes (#111833) | Victor Stinner | 2023-11-07 | 3 | -6/+21 |
|
|
* | gh-111089: Use PyUnicode_AsUTF8() in Argument Clinic (#111585) | Victor Stinner | 2023-11-01 | 3 | -21/+6 |
|
|
* | gh-67565: Remove redundant C-contiguity checks (GH-105521) | Furkan Onder | 2023-10-23 | 2 | -10/+2 |
|
|
* | gh-110964: Remove private _PyArg functions (#110966) | Victor Stinner | 2023-10-17 | 9 | -9/+21 |
|
|
* | gh-109595: Add -Xcpu_count=<n> cmdline for container users (#109667) | Donghee Na | 2023-10-10 | 1 | -1/+29 |
|
|
* | gh-108753: Enhance pystats (#108754) | Victor Stinner | 2023-09-06 | 1 | -6/+18 |
|
|
* | gh-107603: Argument Clinic: Only include pycore_gc.h if needed (#108726) | Victor Stinner | 2023-08-31 | 9 | -46/+22 |
|
|
* | gh-106320: Remove private AC converter functions (#108505) | Victor Stinner | 2023-08-26 | 1 | -1/+2 |
|
|
* | gh-108444: Argument Clinic uses PyLong_AsInt() (#108458) | Victor Stinner | 2023-08-24 | 7 | -37/+37 |
|
|
* | gh-107526: Revert "gh-100357: Convert several functions in bltinsmodule to AC... | Nikita Sobolev | 2023-08-21 | 1 | -195/+1 |
|
|
* | gh-92536: Argument Clinic no longer emits PyUnicode_READY() (#105208) | Victor Stinner | 2023-06-01 | 4 | -34/+4 |
|
|
* | gh-105069: Add a readline-like callable to the tokenizer to consume input ite... | Pablo Galindo Salgado | 2023-05-30 | 1 | -17/+24 |
|
|
* | gh-102856: Python tokenizer implementation for PEP 701 (#104323) | Marta Gómez Macías | 2023-05-21 | 1 | -8/+14 |
|
|
* | gh-84436: Implement Immortal Objects (gh-19474) | Eddie Elizondo | 2023-04-22 | 1 | -1/+29 |
|
|
* | GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1... | Mark Shannon | 2023-04-12 | 1 | -0/+311 |
|
|
* | gh-98627: Add an Optional Check for Extension Module Subinterpreter Compatibi... | Eric Snow | 2023-02-16 | 1 | -1/+32 |
|
|
* | gh-39615: Add warnings.warn() skip_file_prefixes support (#100840) | Gregory P. Smith | 2023-01-28 | 1 | -10/+40 |
|
|
* | gh-86682: Adds sys._getframemodulename as an alternative to using _getframe (... | Steve Dower | 2023-01-13 | 1 | -1/+70 |
|
|
* | gh-100776: Fix misleading default value in help(input) (#100788) | Shantanu | 2023-01-08 | 1 | -2/+2 |
|
|
* | gh-100357: Convert several functions in `bltinsmodule` to AC (#100358) | Nikita Sobolev | 2022-12-24 | 1 | -1/+195 |
|
|
* | Correct CVE-2020-10735 documentation (#100306) | Jeremy Paige | 2022-12-18 | 1 | -2/+2 |
|
|
* | bpo-15999: Accept arbitrary values for boolean parameters. (#15609) | Serhiy Storchaka | 2022-12-03 | 1 | -3/+3 |
|
|
* | GH-98686: Quicken everything (GH-98687) | Brandt Bucher | 2022-11-02 | 1 | -28/+1 |
|
|
* | gh-96143: Improve perf profiler docs (#96445) | Erlend E. Aasland | 2022-10-27 | 1 | -4/+6 |
|
|
* | gh-97841: Add methoddef for _filters_mutated (gh-98115) | Dong-hee Na | 2022-10-09 | 1 | -1/+18 |
|
|
* | gh-96526: Clarify format and __format__ docstrings (gh-96648) | Michael | 2022-10-03 | 1 | -5/+8 |
|
|
* | Fix typos in `bltinmodule.c`. (GH-97766) | Nikita Sobolev | 2022-10-03 | 1 | -5/+5 |
|
|
* | gh-95778: CVE-2020-10735: Prevent DoS by very large int() (#96499) | Gregory P. Smith | 2022-09-02 | 1 | -1/+77 |
|
|
* | gh-96143: Allow Linux perf profiler to see Python calls (GH-96123) | Pablo Galindo Salgado | 2022-08-30 | 1 | -1/+74 |
|
|
* | GH-93503: Add thread-specific APIs to set profiling and tracing functions in ... | Pablo Galindo Salgado | 2022-08-24 | 1 | -1/+25 |
|
|
* | gh-90928: Improve static initialization of keywords tuple in AC (#95907) | Erlend E. Aasland | 2022-08-13 | 6 | -261/+111 |
|
|
* | gh-90928: Statically Initialize the Keywords Tuple in Clinic-Generated Code (... | Eric Snow | 2022-08-11 | 8 | -23/+566 |
|
|
* | gh-91102: Port 8-argument _warnings.warn_explicit to Argument Clinic (#92891) | Oleg Iarygin | 2022-07-20 | 1 | -1/+82 |
|
|
* | GH-93841: Allow stats to be turned on and off, cleared and dumped at runtime.... | Mark Shannon | 2022-06-21 | 1 | -1/+105 |
|
|