- 8b91eda bpo-36251: Fix format strings used in match_repr() and stdprinter_repr(). (GH-12252) by sth · 6 years ago
- a24107b bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112) by Serhiy Storchaka · 6 years ago
- 4a7f44a bpo-34294: re module, fix wrong capturing groups in rare cases. (GH-11546) by animalize · 6 years ago
- d4f9cf5 bpo-33029: Fix signatures of getter and setter functions. (GH-10746) by Serhiy Storchaka · 6 years ago
- 7f0d59f Simplified implementation of _sre.ascii_iscased(). (GH-9097) by Sergey Fedoseev · 6 years ago
- ec014a1 bpo-34636: Use fast path for more chars in SRE category macros. (GH-9170) by Sergey Fedoseev · 6 years ago
- f9925d8 _sre.c: Removed unused SRE_IS_ALNUM macro (GH-9090) by Sergey Fedoseev · 6 years ago
- fbb490f bpo-32308: Replace empty matches adjacent to a previous non-empty match in re.sub(). (#4846) by Serhiy Storchaka · 7 years ago
- 70d56fb bpo-25054, bpo-1647489: Added support of splitting on zerowidth patterns. (#4471) by Serhiy Storchaka · 7 years ago
- 3557b05 bpo-31690: Allow the inline flags "a", "L", and "u" to be used as group flags for RE. (#3885) by Serhiy Storchaka · 7 years ago
- 0b5e61d bpo-30397: Add re.Pattern and re.Match. (#1646) by Serhiy Storchaka · 7 years ago
- 6d336a0 bpo-30285: Optimize case-insensitive matching and searching (#1482) by Serhiy Storchaka · 7 years ago
- 7186cc2 bpo-30277: Replace _sre.getlower() with _sre.ascii_tolower() and _sre.unicode_tolower(). (#1468) by Serhiy Storchaka · 8 years ago
- 898ff03 bpo-30215: Make re.compile() locale agnostic. (#1361) by Serhiy Storchaka · 8 years ago
- 791dc83 remove configure test for inline keyword (#1231) by Benjamin Peterson · 8 years ago
- fdbd011 bpo-10076: Compiled regular expression and match objects now are copyable. (#1000) by Serhiy Storchaka · 8 years ago
- cd85d0b bpo-28765: Use concrete types API in _sre.c. (#1009) by Serhiy Storchaka · 8 years ago
- ba85d69 bpo-29878: Add global instances of int for 0 and 1. (#852) by Serhiy Storchaka · 8 years ago
- ef51767 Issue #29444: Fixed out-of-bounds buffer access in the group() method of by Serhiy Storchaka · 8 years ago
- 86e4237 Issue #29444: Fixed out-of-bounds buffer access in the group() method of by Serhiy Storchaka · 8 years ago
- 7e10dbb Issue #29444: Fixed out-of-bounds buffer access in the group() method of by Serhiy Storchaka · 8 years ago
- 228b12e Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever by Serhiy Storchaka · 8 years ago
- b37f3f6 Issue #29195: Removed support of deprecated undocumented keyword arguments by Serhiy Storchaka · 8 years ago
- 7bfb42d Issue #28858: Remove _PyObject_CallArg1() macro by Victor Stinner · 8 years ago
- 726a57d Issue #28765: _sre.compile() now checks the type of groupindex and indexgroup by Victor Stinner · 8 years ago
- bcf4dcc Issue #28727: Optimize pattern_richcompare() for a==a by Victor Stinner · 8 years ago
- e670b2d Issue #28727: Fix typo in pattern_richcompare() by Victor Stinner · 8 years ago
- b44fb12 Implement rich comparison for _sre.SRE_Pattern by Victor Stinner · 8 years ago
- a6d75fd Issue 24454: Removed unused match_getitem_doc. by Eric V. Smith · 8 years ago
- b569086 Issue 24454: Added whatsnew entry, removed __getitem__ from match_methods. Thanks Serhiy Storchaka. by Eric V. Smith · 8 years ago
- 605bdae Issue 24454: Improve the usability of the re match object named group API by Eric V. Smith · 8 years ago
- ca47063 replace Py_(u)intptr_t with the c99 standard types by Benjamin Peterson · 8 years ago
- 559bb6a Rename _PyObject_FastCall() to _PyObject_FastCallDict() by Victor Stinner · 8 years ago
- ea5e599 pattern_subx() now uses fast call by Victor Stinner · 8 years ago
- 0a3ccac merge 3.5 (#27774) by Benjamin Peterson · 8 years ago
- 76aa1fb merge 3.4 (#27774) by Benjamin Peterson · 8 years ago
- 10bc0f6 merge 3.3 (#27774) by Benjamin Peterson · 8 years ago
- 3a27b08 do not decref value borrowed from list (closes #27774) by Benjamin Peterson · 8 years ago
- 2954f83 - Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
- 1a2b24f Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
- 977b3ac Issue #27177: Match objects in the re module now support index-like objects by Serhiy Storchaka · 8 years ago
- f01e408 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 9 years ago
- 57a01d3 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 9 years ago
- ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 9 years ago
- 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 9 years ago
- ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 9 years ago
- 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 9 years ago
- f006940 Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
- 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
- 5bccb29 Issue #18684: Fixed reading out of the buffer in the re module. by Serhiy Storchaka · 9 years ago
- 02eae6b Issue #18684: Fixed reading out of the buffer in the re module. by Serhiy Storchaka · 9 years ago
- 03d6ee3 Issue #18684: Fixed reading out of the buffer in the re module. by Serhiy Storchaka · 9 years ago
- bb215e2 Merge 3.5 (Issue #19235) by Yury Selivanov · 9 years ago
- f488fb4 Issue #19235: Add new RecursionError exception. Patch by Georg Brandl. by Yury Selivanov · 9 years ago
- 66dc464 Issue #24426: Fast searching optimization in regular expressions now works by Serhiy Storchaka · 9 years ago
- 2d0a69a Fix Windows build breakage from checkins on Issues #20148 and #20168. by Larry Hastings · 10 years ago
- a860aea Issue #20148: Converted the _sre module to Argument Clinic. by Serhiy Storchaka · 10 years ago
- 07360df Issue #14260: The groupindex attribute of regular expression pattern object by Serhiy Storchaka · 10 years ago
- 632a77e Issue #22364: Improved some re error messages using regex for hints. by Serhiy Storchaka · 10 years ago
- 83e8027 Issue #22818: Splitting on a pattern that could match an empty string now by Serhiy Storchaka · 10 years ago
- 4b8f894 Issue #17381: Fixed handling of case-insensitive ranges in regular expressions. by Serhiy Storchaka · 10 years ago
- 5aa4744 Issue #22584: Got rid of character tables in _sre.c and use standard macros by Serhiy Storchaka · 10 years ago
- 9baa5b2 Issue #22437: Number of capturing groups in regular expression is no longer by Serhiy Storchaka · 10 years ago
- 706768c Issue #22156: Fix some "comparison between signed and unsigned integers" by Victor Stinner · 10 years ago
- 429b59e Issue #20998: Fixed re.fullmatch() of repeated single character pattern by Serhiy Storchaka · 10 years ago
- ccdf352 Issue #20283: RE pattern methods now accept the string keyword parameters by Serhiy Storchaka · 11 years ago
- a537eb4 Issue #20283: RE pattern methods now accept the string keyword parameters by Serhiy Storchaka · 11 years ago
- 2623c8c Issue #20530: Argument Clinic's signature format has been revised again. by Larry Hastings · 11 years ago
- 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 11 years ago
- c204726 Issue #20390: Small fixes and improvements for Argument Clinic. by Larry Hastings · 11 years ago
- 5c66189 Issue #20189: Four additional builtin types (PyTypeObject, by Larry Hastings · 11 years ago
- df7c22b Issue #19723: Missed one conversion to the new Argument Clinic syntax. by Larry Hastings · 11 years ago
- 16c5191 Issue #20144: Argument Clinic now supports simple constants as parameter by Larry Hastings · 11 years ago
- 32eddc1 Issue #16203: Add re.fullmatch() function and regex.fullmatch() method, by Serhiy Storchaka · 11 years ago
- 5c24d0e Issue #13592: Improved the repr for regular expression pattern objects. by Serhiy Storchaka · 11 years ago
- f558778 Fix compiler warning (especially on Windows 64-bit): don't truncate Py_ssize_t by Victor Stinner · 11 years ago
- efa5a39 Issue #19405: Fixed outdated comments in the _sre module. by Serhiy Storchaka · 11 years ago
- 1985f7b Issue #19405: Fixed outdated comments in the _sre module. by Serhiy Storchaka · 11 years ago
- 8444ebb Issue #18685: Extract template part of _sre.c into separated sre_lib.h file. by Serhiy Storchaka · 11 years ago
- 9eabac6 Issue #18685: Restore re performance to pre-PEP 393 levels. by Serhiy Storchaka · 11 years ago
- 8b150ec Issue #19327: Fixed the working of regular expressions with too big charset. by Serhiy Storchaka · 11 years ago
- be80fc9 Issue #19327: Fixed the working of regular expressions with too big charset. by Serhiy Storchaka · 11 years ago
- 36af10c Issue #17087: Improved the repr for regular expression match objects. by Serhiy Storchaka · 11 years ago
- baced56 Fix a refleak in _sre by Brett Cannon · 11 years ago
- 2532497 Issue #18468: The re.split, re.findall, and re.sub functions and the group() by Serhiy Storchaka · 11 years ago
- daa1fa9 Back out accidentally pushed changeset b51218966201. by Georg Brandl · 11 years ago
- 4300019 Add re.fullmatch() function and regex.fullmatch() method, which anchor the by Georg Brandl · 11 years ago
- a83a022 Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output in by Serhiy Storchaka · 11 years ago
- 134f0de Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output in by Serhiy Storchaka · 11 years ago
- 1fa174a Get rid of signed/unsigned comparaison in _sre.c by Victor Stinner · 11 years ago
- 8fa8ee3 Issue #18701: Remove support of old CPython versions (<3.0) from C code. by Serhiy Storchaka · 11 years ago
- b94f61b Issue #17998: Fix an internal error in regular expression engine. by Serhiy Storchaka · 11 years ago
- 1f35ae0 Issue #17998: Fix an internal error in regular expression engine. by Serhiy Storchaka · 11 years ago
- 6d80046 Issue #17016: Get rid of possible pointer wraparounds and integer overflows by Serhiy Storchaka · 12 years ago
- 4bb1734 Issue #17016: Get rid of possible pointer wraparounds and integer overflows by Serhiy Storchaka · 12 years ago
- e924ddb Issue #9669: Protect re against infinite loops on zero-width matching in by Serhiy Storchaka · 12 years ago
- b0c75a7 Issue #9669: Protect re against infinite loops on zero-width matching in by Serhiy Storchaka · 12 years ago
- fa46816 Issue #9669: Protect re against infinite loops on zero-width matching in by Serhiy Storchaka · 12 years ago
- 165ee96 Issue #13169: The maximal repetition number in a regular expression has been by Serhiy Storchaka · 12 years ago
- a0eb809 Issue #13169: The maximal repetition number in a regular expression has been by Serhiy Storchaka · 12 years ago