summaryrefslogtreecommitdiff
path: root/Modules/_sre.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* _compile(): raise an exception if downcasting to SRE_CODETim Peters2006-01-211-37/+40
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-8/+8
* Fixing bug #1072259 in SRE.Gustavo Niemeyer2004-12-021-7/+10
* Add docstrings for regular expression objects and methods.Raymond Hettinger2004-09-241-8/+51
* Fixing bug #817234, which made SRE get into an infinite loop onGustavo Niemeyer2004-09-031-5/+3
* Moved SunPro warning suppression into pyport.h and out of individualNicholas Bastin2004-07-151-4/+0
* Fixed end-of-loop code not reached warning when using SunPro CNicholas Bastin2004-06-171-0/+4
* Add weakref support to sockets and re pattern objects.Raymond Hettinger2004-05-311-1/+24
* - Fixing annoying warnings.Gustavo Niemeyer2004-02-141-7/+10
* Cleaning up recursive pieces left in the reorganization.Gustavo Niemeyer2003-12-131-119/+16
* Removing dead code.Gustavo Niemeyer2003-10-181-11/+0
* Implemented non-recursive SRE matching.Gustavo Niemeyer2003-10-171-439/+741
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-5/+5
* Fixing bug described in patch #756032, where SRE reads invalid dataGustavo Niemeyer2003-06-261-1/+1
* Changes to sre.c after the application of patch #726869 have increasedAndrew MacIntyre2003-06-091-5/+11
* Allow _sre.c to compile with Python 2.2Andrew M. Kuchling2003-04-301-0/+4
* - Included detailed documentation in _sre.c explaining how, when, and whyGustavo Niemeyer2003-04-271-17/+41
* Fix for part of the problem mentioned in #725149 by Greg Chapman.Gustavo Niemeyer2003-04-271-8/+10
* Applied patch #725106, by Greg Chapman, fixing capturing groupsGustavo Niemeyer2003-04-271-0/+10
* Applying patch #726869 by Andrew I MacIntyre, reducing in _sre.c theGustavo Niemeyer2003-04-271-0/+9
* Made MAX_UNTIL/MIN_UNTIL code more coherent about mark protection,Gustavo Niemeyer2003-04-221-4/+6
* More work on bug #672491 and patch #712900.Gustavo Niemeyer2003-04-201-23/+38
* - Fixed bug #672491. This change restores the behavior of lastindex/lastgroupGustavo Niemeyer2003-04-201-5/+4