summaryrefslogtreecommitdiff
path: root/Modules/_sre.c
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-34234: Use _PyAnyInt_Check() and _PyAnyInt_CheckExact(). (GH-8479)Serhiy Storchaka2018-07-311-2/+2
* Fix compiler warnings on Windows (GH-7729)Victor Stinner2018-06-161-11/+11
* consistently use Py_TYPE, Py_REFCNT, and correct initializer macros (#3563)Benjamin Peterson2017-09-131-4/+4
* [2.7] bpo-30363: Backport warnings in the re module. (#1577)Serhiy Storchaka2017-05-181-0/+14
* do not decref value borrowed from list (closes #27774)Benjamin Peterson2016-08-151-3/+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-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-14/+41
* allow longs as indexes to group() (closes #22530)Benjamin Peterson2014-09-301-1/+1
* Issue #20283: RE pattern methods now accept the string keyword parametersSerhiy Storchaka2014-03-061-16/+81
* Issue #19405: Fixed outdated comments in the _sre module.Serhiy Storchaka2013-10-271-2/+1
* Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output inSerhiy Storchaka2013-09-051-14/+22
* Issue #17998: Fix an internal error in regular expression engine.Serhiy Storchaka2013-08-031-6/+6
* Issue #17016: Get rid of possible pointer wraparounds and integer overflowsSerhiy Storchaka2013-04-131-11/+11
* Issue #9669: Protect re against infinite loops on zero-width matching inSerhiy Storchaka2013-02-161-2/+7
* Issue #13169: The maximal repetition number in a regular expression has beenSerhiy Storchaka2013-02-161-6/+12
* use PyInt_FromSsize_t instead of PyLong_FromSsize_t (#10182)Benjamin Peterson2013-01-101-4/+4
* rename MathcObject to match object in doctrings for re module (#16760)Andrew Svetlov2012-12-251-1/+1
* Issue #16443: Add docstrings to regular expression match objects.Andrew Svetlov2012-12-231-9/+49
* 1 << 31 is invalid for signed integers, fix it by making 1 unsigned.Gregory P. Smith2012-12-101-2/+2
* Issue #10182: The re module doesn't truncate indices to 32 bits anymore.Antoine Pitrou2012-12-021-5/+5
* Issue #1160: Fix compiling large regular expressions on UCS2 builds.Antoine Pitrou2012-11-201-4/+7
* Fix Issue 12604 - Use a proper no-op macro expansion for VTRACE macro in _sre.cSenthil Kumaran2011-10-201-1/+1
* stop using the old brain-dead interface for providing attributes/methodsBenjamin Peterson2011-05-171-120/+118
* Remove unused variables and a variable initialization.Brett Cannon2010-05-031-6/+6
* ready _sre typesBenjamin Peterson2010-04-061-2/+3
* Issue #3299: Fix possible crash in the _sre module when given badAntoine Pitrou2010-01-141-3/+8
* Issue #6561: '\d' regular expression should not match characters ofMark Dickinson2009-07-281-1/+1
* - Issue #3629: Fix sre "bytecode" validator for an end case.Guido van Rossum2008-09-101-3/+4
* Tracker issue 3487: sre "bytecode" verifier.Guido van Rossum2008-08-051-0/+474
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-3/+3
* Renamed PyString to PyBytesChristian Heimes2008-05-261-3/+3
* Silence Coverity false alerts with CIDs #172, #183, #184Christian Heimes2008-01-181-1/+2
* Issue 846388. Adds a call to PyErr_CheckSignals toFacundo Batista2008-01-081-0/+8
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-1/+1
* Patch # 1140 (my code, approved by Effbot).Guido van Rossum2007-09-101-17/+8
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-1/+1
* Cause a PyObject_Malloc() failure to trigger a MemoryError, and thenAndrew M. Kuchling2006-10-041-2/+21
* Try to handle a malloc failure. I'm not entirely sure this is correct.Neal Norwitz2006-08-121-0/+3
* Impl ssize_tNeal Norwitz2006-06-121-93/+98
* Make use of METH_O and METH_NOARGS where possible.Georg Brandl2006-05-291-3/+3
* METH_NOARGS functions do get called with two args.Georg Brandl2006-05-281-5/+5
* Fix C function calling conventions in _sre module.Georg Brandl2006-05-281-38/+18
* needforspeed: use PyObject_MALLOC instead of system malloc for smallJack Diederich2006-05-271-4/+4
* C++ compiler cleanup: proper castsSkip Montanaro2006-04-181-2/+2
* Move constructors, add some casts to make C++ compiler happy. Still a problemAnthony Baxter2006-04-121-202/+201
* Rename sre.py -> re.pyNeal Norwitz2006-03-161-2/+4
* Thanks to Coverity, these were all reported by their Prevent tool.Neal Norwitz2006-03-071-1/+1
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-8/+8