summaryrefslogtreecommitdiffstats
path: root/Modules/_sre.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fully support 32-bit codes. Enable BIGCHARSET in UCS-4 builds.Martin v. Löwis2003-04-191-10/+42
* SF patch #720991 by Gary Herron:Guido van Rossum2003-04-141-0/+60
* fix for SF #635398 (don't "downcast" return strings from unicode to ascii)Fredrik Lundh2002-11-221-21/+4
* Make private functions static so we don't pollute the namespaceNeal Norwitz2002-11-101-1/+2
* Fixed sre bug "[#581080] Provoking infinite scanner loops".Gustavo Niemeyer2002-11-071-4/+6
* Fixed bug #470582, using a modified version of patch #527371,Gustavo Niemeyer2002-11-061-18/+19
* Cray fixup as seen in bug #558153.Michael W. Hudson2002-07-311-2/+2
* Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT.Mark Hammond2002-07-191-2/+1
* staticforward bites the dust.Jeremy Hylton2002-07-171-3/+3
* SF #561244 Micro optimizationsNeal Norwitz2002-06-131-4/+1
* Revert use of METH_OLDARGS (use 0) to support 1.5.2Neal Norwitz2002-03-311-2/+4
* Use symbolic METH_VARARGS/METH_OLDARGS instead of 1/0 for ml_flagsNeal Norwitz2002-03-311-5/+5
* bug #133283, #477728, #483789, #490573Fredrik Lundh2001-12-091-19/+11
* Patch supplied by Burton Radons for his own SF bug #487390: ModifyingGuido van Rossum2001-12-081-3/+3
* Fix for #489672 (Neil Norwitz): memory leak in test_sre.Guido van Rossum2001-12-071-1/+4
* (experimental) "finditer" method/function. this works pretty muchFredrik Lundh2001-10-241-0/+28
* another major speedup: let sre.sub/subn check for escapes in theFredrik Lundh2001-10-221-30/+89
* sre.split should return the last segment, even if emptyFredrik Lundh2001-10-221-11/+10
* fixed character set description in docstring (SRE uses PythonFredrik Lundh2001-10-211-96/+41
* sre.Scanner fixes (from Greg Chapman). also added a Scanner sanityFredrik Lundh2001-10-211-0/+17
* rewrote the pattern.sub and pattern.subn methods in CFredrik Lundh2001-10-211-113/+306
* rewrote the pattern.split method in CFredrik Lundh2001-10-201-12/+136
* SRE bug #441409:Fredrik Lundh2001-10-181-1/+3
* fixed #449964: sre.sub raises an exception if the template contains aFredrik Lundh2001-09-181-12/+16
* an SRE bugfix a day keeps Guido away...Fredrik Lundh2001-09-181-9/+14
* Removed unreachable return to silence SGI compiler.Sjoerd Mullender2001-08-301-2/+1
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-1/+1
* init_sre(): Plug a little leak reported by Insure.Barry Warsaw2001-08-161-2/+5
* map re.sub() to string.replace(), when possibleFredrik Lundh2001-07-081-0/+23
* bug #416670Fredrik Lundh2001-07-031-16/+87