| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-122854: Add Py_HashBuffer() function (#122855) | Victor Stinner | 2024-08-30 | 1 | -1/+1 |
|
|
* | gh-121645: Add PyBytes_Join() function (#121646) | Victor Stinner | 2024-08-30 | 1 | -2/+2 |
|
|
* | Update PyObject_Del() documentation (#122597) | Victor Stinner | 2024-08-02 | 1 | -1/+1 |
|
|
* | gh-119344: Make critical section API public (#119353) | Sam Gross | 2024-06-21 | 1 | -1/+1 |
|
|
* | gh-120155: Add assertion to sre.c match_getindex() (#120402) | Victor Stinner | 2024-06-12 | 1 | -0/+2 |
|
|
* | gh-120244: Fix re.sub() reference leak (GH-120245) | neonene | 2024-06-08 | 1 | -0/+1 |
|
|
* | gh-116322: Add Py_mod_gil module slot (#116882) | Brett Simmers | 2024-05-03 | 1 | -0/+1 |
|
|
* | gh-112075: Add critical sections for most dict APIs (#114508) | Dino Viehland | 2024-02-06 | 1 | -12/+15 |
|
|
* | gh-115015: Argument Clinic: fix generated code for METH_METHOD methods withou... | Erlend E. Aasland | 2024-02-05 | 1 | -3/+3 |
|
|
* | gh-114569: Use PyMem_* APIs for most non-PyObject uses (#114574) | Erlend E. Aasland | 2024-01-26 | 1 | -2/+2 |
|
|
* | Output more details in the re tracing (GH-111357) | Serhiy Storchaka | 2023-10-26 | 2 | -4/+42 |
|
|
* | gh-110964: Remove private _PyArg functions (#110966) | Victor Stinner | 2023-10-17 | 1 | -1/+2 |
|
|
* | gh-109747: Improve errors for unsupported look-behind patterns (GH-109859) | Serhiy Storchaka | 2023-10-14 | 2 | -9/+7 |
|
|
* | gh-110590: Fix a bug where _sre.compile would overwrite exceptions (#110591) | Nikita Sobolev | 2023-10-10 | 1 | -0/+3 |
|
|
* | gh-109631: Allow interruption of short repeated regex matches (GH-109867) | Serhiy Storchaka | 2023-09-26 | 2 | -2/+5 |
|
|
* | gh-108765: Python.h no longer includes <ctype.h> (#108831) | Victor Stinner | 2023-09-03 | 1 | -5/+33 |
|
|
* | gh-107603: Argument Clinic: Only include pycore_gc.h if needed (#108726) | Victor Stinner | 2023-08-31 | 1 | -5/+4 |
|
|
* | 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 | 1 | -6/+6 |
|
|
* | gh-106320: Remove private _PyDict functions (#108449) | Victor Stinner | 2023-08-24 | 1 | -0/+1 |
|
|
* | gh-100061: Proper fix of the bug in the matching of possessive quantifiers (G... | SKO | 2023-08-16 | 1 | -0/+4 |
|
|
* | gh-106869: Use new PyMemberDef constant names (#106871) | Victor Stinner | 2023-07-25 | 1 | -10/+10 |
|
|
* | gh-86493: Use PyModule_Add() instead of PyModule_AddObjectRef() (GH-106860) | Serhiy Storchaka | 2023-07-18 | 1 | -6/+1 |
|
|
* | gh-106508: Improve debugging of the _sre module (GH-106509) | Serhiy Storchaka | 2023-07-08 | 3 | -5/+31 |
|
|
* | gh-106524: Fix a crash in _sre.template() (GH-106525) | Radislav Chugunov | 2023-07-08 | 1 | -0/+2 |
|
|
* | gh-104922: remove PY_SSIZE_T_CLEAN (#106315) | Inada Naoki | 2023-07-02 | 1 | -2/+0 |
|
|
* | gh-105687: Remove deprecated objects from `re` module (#105688) | Nikita Sobolev | 2023-06-14 | 2 | -3/+1 |
|
|
* | gh-92536: Remove PyUnicode_READY() calls (#105210) | Victor Stinner | 2023-06-01 | 1 | -2/+0 |
|
|
* | gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205) | Eric Snow | 2023-05-05 | 1 | -0/+1 |
|
|
* | gh-99300: Use Py_NewRef() in Modules/ directory (#99468) | Victor Stinner | 2022-11-14 | 1 | -52/+27 |
|
|
* | gh-98740: Fix validation of conditional expressions in RE (GH-98764) | Serhiy Storchaka | 2022-11-03 | 1 | -27/+29 |
|
|
* | gh-91524: Speed up the regular expression substitution (#91525) | Serhiy Storchaka | 2022-10-23 | 4 | -43/+329 |
|
|
* | gh-97669: Create Tools/build/ directory (#97963) | Victor Stinner | 2022-10-17 | 2 | -2/+2 |
|
|
* | gh-90928: Improve static initialization of keywords tuple in AC (#95907) | Erlend E. Aasland | 2022-08-13 | 1 | -222/+92 |
|
|
* | gh-90928: Statically Initialize the Keywords Tuple in Clinic-Generated Code (... | Eric Snow | 2022-08-11 | 1 | -14/+449 |
|
|
* | gh-91404: Revert "bpo-23689: re module, fix memory leak when a match is termi... | Gregory P. Smith | 2022-06-17 | 5 | -81/+47 |
|
|
* | gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742) | Serhiy Storchaka | 2022-06-14 | 1 | -11/+1 |
|
|
* | gh-92728: Restore re.template, but deprecate it (GH-93161) | Miro HronĨok | 2022-05-25 | 2 | -0/+2 |
|
|
* | gh-91320: Argument Clinic uses _PyCFunction_CAST() (#32210) | Victor Stinner | 2022-05-03 | 1 | -19/+19 |
|
|
* | gh-91583: AC: Fix regression for functions with defining_class (GH-91739) | Serhiy Storchaka | 2022-04-30 | 1 | -44/+250 |
|
|
* | gh-91870: Remove unsupported SRE opcode CALL (GH-91872) | Serhiy Storchaka | 2022-04-26 | 3 | -40/+37 |
|
|
* | gh-91616: re module, fix .fullmatch() mismatch when using Atomic Grouping or ... | Ma Lin | 2022-04-19 | 1 | -7/+7 |
|
|
* | bpo-47256: Increasing the depth of backtracking in RE (GH-32411) | Ma Lin | 2022-04-18 | 2 | -44/+44 |
|
|
* | gh-91404: Use computed gotos and reduce indirection in re (#91495) | Brandt Bucher | 2022-04-15 | 2 | -343/+452 |
|
|
* | bpo-47152: Automatically regenerate sre_constants.h (GH-91439) | Serhiy Storchaka | 2022-04-12 | 1 | -2/+2 |
|
|
* | bpo-47211: Remove function re.template() and flag re.TEMPLATE (GH-32300) | Serhiy Storchaka | 2022-04-06 | 2 | -2/+0 |
|
|
* | bpo-47152: Move sources of the _sre module into a subdirectory (GH-32290) | Serhiy Storchaka | 2022-04-04 | 5 | -0/+5947 |
|
|