summaryrefslogtreecommitdiffstats
path: root/Modules/_sre.c
Commit message (Expand)AuthorAgeFilesLines
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-1/+1
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-7/+7
* Remove the buffer API from PyUnicode as specified by PEP 3137. Also,Alexandre Vassalotti2007-10-141-0/+9
* Change PyBuffer to Py_buffer to be consistent with other non-object structure...Travis E. Oliphant2007-09-231-1/+1
* Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge fromThomas Wouters2007-09-191-17/+8
* Remove checking redundantly for checks of PyInt and PyLong.Neal Norwitz2007-08-311-1/+1
* Use unicodeNeal Norwitz2007-08-261-2/+2
* Merged in py3k-buffer branch to main line. All objects now use the buffer pr...Travis E. Oliphant2007-08-181-25/+19
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-7/+7
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-4/+0
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-141-5/+8
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-2/+21
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-0/+3
* Completely get rid of PyClass and PyInstance.Guido van Rossum2006-08-171-7/+7
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-93/+98
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-1/+1
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-41/+21
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-4/+4
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-204/+203
* Merge trunk up to 43069, putting re.py back and hopefully making the branchThomas Wouters2006-04-211-2/+4
* Remove staticforward and statichereNeal Norwitz2006-03-221-3/+3
* 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
* 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