summaryrefslogtreecommitdiff
path: root/Modules/_sre.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-041-2/+7
|\
| * Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-041-2/+7
* | Issue #28727: Optimize pattern_richcompare() for a==aVictor Stinner2016-11-221-0/+6
* | Issue #28727: Fix typo in pattern_richcompare()Victor Stinner2016-11-221-1/+1
* | Implement rich comparison for _sre.SRE_PatternVictor Stinner2016-11-211-6/+67
* | Issue 24454: Removed unused match_getitem_doc.Eric V. Smith2016-09-111-3/+0
* | Issue 24454: Added whatsnew entry, removed __getitem__ from match_methods. Th...Eric V. Smith2016-09-111-1/+0
* | Issue 24454: Improve the usability of the re match object named group APIEric V. Smith2016-09-111-1/+18
* | replace Py_(u)intptr_t with the c99 standard typesBenjamin Peterson2016-09-061-7/+7
* | Rename _PyObject_FastCall() to _PyObject_FastCallDict()Victor Stinner2016-08-221-1/+1
* | pattern_subx() now uses fast callVictor Stinner2016-08-201-8/+1
* | merge 3.5 (#27774)Benjamin Peterson2016-08-151-3/+1
|\ \ | |/
| * merge 3.4 (#27774)Benjamin Peterson2016-08-151-3/+1
| |\
| | * merge 3.3 (#27774)Benjamin Peterson2016-08-151-1590/+346
| | |\
| | * | do not decref value borrowed from list (closes #27774)Benjamin Peterson2016-08-151-3/+1
* | | | - Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka2016-07-071-6/+6
|\ \ \ \ | |/ / /
| * | | Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka2016-07-071-6/+6
* | | | Issue #27177: Match objects in the re module now support index-like objectsSerhiy Storchaka2016-06-181-2/+3
* | | | Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-101-1/+1
|\ \ \ \ | |/ / /
| * | | Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-101-1/+1
* | | | Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-5/+2
|\ \ \ \ | |/ / / |/| | |
| * | | Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-1/+1
| * | | Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka2015-12-251-1/+1
| * | | Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-3/+0
| |\ \ \
| | * \ \ Issue #18684: Fixed reading out of the buffer in the re module.Serhiy Storchaka2015-07-061-5/+21
| | |\ \ \
| | * \ \ \ Merge 3.5 (Issue #19235)Yury Selivanov2015-07-031-3/+0
| | |\ \ \ \
| | | * | | | Issue #24426: Fast searching optimization in regular expressions now worksSerhiy Storchaka2015-06-211-3/+0
* | | | | | | Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-1/+1
|/ / / / / /
* | | | | | Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-2/+1
| |_|/ / / |/| | | |
* | | | | Issue #18684: Fixed reading out of the buffer in the re module.Serhiy Storchaka2015-07-061-5/+21
|\ \ \ \ \ | |/ / / / |/| | | / | | |_|/ | |/| |
| * | | Issue #18684: Fixed reading out of the buffer in the re module.Serhiy Storchaka2015-07-061-5/+21
* | | | Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.Yury Selivanov2015-07-031-1/+2
| |/ / |/| |
* | | Fix Windows build breakage from checkins on Issues #20148 and #20168.Larry Hastings2015-05-031-141/+140
* | | Issue #20148: Converted the _sre module to Argument Clinic.Serhiy Storchaka2015-05-031-311/+391
* | | Issue #14260: The groupindex attribute of regular expression pattern objectSerhiy Storchaka2015-03-301-1/+14
* | | Issue #22364: Improved some re error messages using regex for hints.Serhiy Storchaka2015-03-251-3/+3
* | | Issue #22818: Splitting on a pattern that could match an empty string nowSerhiy Storchaka2015-02-031-0/+13
* | | Issue #17381: Fixed handling of case-insensitive ranges in regular expressions.Serhiy Storchaka2014-10-311-3/+25
* | | Issue #22584: Got rid of character tables in _sre.c and use standard macrosSerhiy Storchaka2014-10-101-34/+6
* | | Issue #22437: Number of capturing groups in regular expression is no longerSerhiy Storchaka2014-09-291-14/+37
* | | Issue #22156: Fix some "comparison between signed and unsigned integers"Victor Stinner2014-08-161-1/+1
|/ /
* | Issue #20998: Fixed re.fullmatch() of repeated single character patternSerhiy Storchaka2014-05-141-8/+7
* | Issue #20283: RE pattern methods now accept the string keyword parametersSerhiy Storchaka2014-03-061-64/+79
|\ \ | |/
| * Issue #20283: RE pattern methods now accept the string keyword parametersSerhiy Storchaka2014-03-061-20/+64
* | Issue #20530: Argument Clinic's signature format has been revised again.Larry Hastings2014-02-081-2/+4
* | Issue #20326: Argument Clinic now uses a simple, unique signature toLarry Hastings2014-01-281-2/+2
* | Issue #20390: Small fixes and improvements for Argument Clinic.Larry Hastings2014-01-251-2/+1
* | Issue #20189: Four additional builtin types (PyTypeObject,Larry Hastings2014-01-241-4/+4
* | Issue #19723: Missed one conversion to the new Argument Clinic syntax.Larry Hastings2014-01-071-3/+3
* | Issue #20144: Argument Clinic now supports simple constants as parameterLarry Hastings2014-01-071-18/+50