summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_re.py
Commit message (Expand)AuthorAgeFilesLines
* #6509: fix re.sub to work properly when the pattern, the string, and the repl...Ezio Melotti2010-03-061-0/+18
* Issue #3299: replace PyObject_DEL() by Py_DECREF() in _sre module to fix aVictor Stinner2010-03-041-0/+1
* Merged revisions 77706 via svnmerge fromEzio Melotti2010-01-231-1/+5
* Merged revisions 77499 via svnmerge fromAntoine Pitrou2010-01-141-0/+6
* Issue #6561: '\d' in a regular expression should match only UnicodeMark Dickinson2009-07-281-0/+21
* Remove apparently unneeded and un-cleaned-up munging of sys.path fromR. David Murray2009-07-201-3/+0
* convert old fail* assertions to assert*Benjamin Peterson2009-06-301-1/+1
* Issue #3756: make re.escape() handle bytes as well as str.Guido van Rossum2008-09-101-0/+14
* Merged revisions 66364 via svnmerge fromGuido van Rossum2008-09-101-0/+4
* Merged revisions 66321 via svnmerge fromBrett Cannon2008-09-091-1/+1
* Merged revisions 65910,65977,65980,65984,65986,66000,66011-66012,66014,66017,...Benjamin Peterson2008-08-251-4/+2
* #2834: Change re module semantics, so that str and bytes mixing is forbidden,Antoine Pitrou2008-08-191-20/+45
* #3231: re.compile fails with some bytes patternsAntoine Pitrou2008-07-221-20/+23
* #3247 Get rid of Py_FindMethod; use tp_members instead.Amaury Forgeot d'Arc2008-07-021-0/+7
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-1/+1
* Remove the sre module.Brett Cannon2008-05-111-10/+0
* Fix 're' to work on bytes. It could do with a few more tests, though.Thomas Wouters2008-03-181-31/+19
* Merged revisions 59883-59920 via svnmerge fromChristian Heimes2008-01-111-0/+12
* Fixed unichr() -> chr()Christian Heimes2008-01-041-2/+2
* Merged revisions 59666-59679 via svnmerge fromChristian Heimes2008-01-031-0/+30
* Merged revisions 59565-59594 via svnmerge fromChristian Heimes2007-12-241-0/+8
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-3/+4
* Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge fromThomas Wouters2007-09-191-0/+28
* Raise statement normalization in Lib/test/.Collin Winter2007-08-291-1/+1
* First merge from the trunk straight into the py3k branch. I'm notGuido van Rossum2007-08-161-2/+2
* Getting rid of cPickle. Mmm, feels good!Guido van Rossum2007-07-201-6/+0
* There is no longer a 'c' array typecode.Guido van Rossum2007-07-031-1/+1
* Make test_re pass.Guido van Rossum2007-05-151-14/+2
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-021-18/+18
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-1/+14
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-5/+5
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-14/+14
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
* Quite a few fixes to make the library and test suite more robust whenGuido van Rossum2006-08-171-2/+6
* Merge trunk up to 43069, putting re.py back and hopefully making the branchThomas Wouters2006-04-211-1/+1
* Bug #1202493: Fixing SRE parser to handle '{}' as perl does, rather thanGustavo Niemeyer2005-09-141-0/+3
* M-x untabifyMichael W. Hudson2005-06-031-9/+9
* [Bug #1177831] Exercise (?(id)yes|no) for a group other than the first oneAndrew M. Kuchling2005-06-021-0/+10
* Whitespace normalization.Tim Peters2004-09-121-1/+1
* Fixing bug #817234, which made SRE get into an infinite loop onGustavo Niemeyer2004-09-031-0/+16
* Applying modified version of patch #1018386, which fixesGustavo Niemeyer2004-09-031-0/+53
* Add weakref support to sockets and re pattern objects.Raymond Hettinger2004-05-311-0/+8
* Fix _sre.CODESIZE on 64-bit machines in UCS-4 mode. Fixes #931848.Martin v. Löwis2004-05-071-0/+9
* SF #926075: Fixed the bug that returns a wrong pattern object forHye-Shik Chang2004-04-201-0/+8
* Whitespace normalization.Tim Peters2004-01-181-1/+1
* Implemented non-recursive SRE matching.Gustavo Niemeyer2003-10-171-7/+7
* Fix and test for bug #764548:Just van Rossum2003-07-021-0/+10
* fixed typo in commentJust van Rossum2003-07-021-1/+1
* Many new tests, based on gcov's coverage information.Gustavo Niemeyer2003-06-201-0/+172
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-4/+2