summaryrefslogtreecommitdiff
path: root/Lib/test/test_re.py
Commit message (Expand)AuthorAgeFilesLines
* backout fac649bf2d10 (#9179) for further considerationBenjamin Peterson2014-11-301-37/+1
* Issue #12728: Different Unicode characters having the same uppercase butSerhiy Storchaka2014-11-101-0/+45
* Issues #814253, #9179: Group references and conditional group references nowSerhiy Storchaka2014-11-071-1/+37
* Issue #17381: Fixed ranges handling in case-insensitive regular expressions.Serhiy Storchaka2014-10-311-0/+37
* Issue #22410: Module level functions in the re module now cache compiledSerhiy Storchaka2014-10-311-0/+37
* allow longs as indexes to group() (closes #22530)Benjamin Peterson2014-09-301-0/+4
* Issue #22423: Fixed debugging output of the GROUPREF_EXISTS opcode in the reSerhiy Storchaka2014-09-211-6/+23
* Test re pickling for all protocols.Serhiy Storchaka2014-09-151-3/+6
* Now re tests work again on Unicode-disabled build.Serhiy Storchaka2014-09-141-47/+52
* Use more appropriate asserts in re tests.Serhiy Storchaka2014-09-141-59/+59
* Issue #20283: RE pattern methods now accept the string keyword parametersSerhiy Storchaka2014-03-061-0/+13
* Issue #20426: When passing the re.DEBUG flag, re.compile() displays the debug...Antoine Pitrou2014-02-031-0/+14
* Issue #19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-101-3/+3
* Issue #19327: Fixed the working of regular expressions with too big charset.Serhiy Storchaka2013-10-241-0/+2
* Issue #2537: Remove breaked check which prevented valid regular expressions.Serhiy Storchaka2013-08-191-0/+10
* Issue #17998: Fix an internal error in regular expression engine.Serhiy Storchaka2013-08-031-0/+10
* #17341: Include name in re error message about invalid group name.R David Murray2013-04-141-0/+11
* Issue #9669: Protect re against infinite loops on zero-width matching inSerhiy Storchaka2013-02-161-0/+9
* Issue #13169: The maximal repetition number in a regular expression has beenSerhiy Storchaka2013-02-161-1/+32
* #13899: \A, \Z, and \B now correctly match the A, Z, and B literals when used...Ezio Melotti2013-01-111-0/+6
* Fix test splitting in previous commit.Antoine Pitrou2012-12-031-4/+2
* Split the bigmem re test in two separate tests with different memory requirem...Antoine Pitrou2012-12-031-2/+10
* Issue #10182: The re module doesn't truncate indices to 32 bits anymore.Antoine Pitrou2012-12-021-0/+16
* Issue #1160: Fix compiling large regular expressions on UCS2 builds.Antoine Pitrou2012-11-201-0/+6
* #12759: sre_parse now raises a proper error when the name of the group is mis...Ezio Melotti2012-11-031-0/+20
* #14179: add tests for re.compile. Patch by Florian Mladitsch.Ezio Melotti2012-03-131-0/+10
* #10713: Improve documentation for \b and \B and add a few tests. Initial pat...Ezio Melotti2012-02-291-0/+26
* #2650: Refactor re.escape and its tests.Ezio Melotti2011-03-251-11/+57
* #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
* Replace catch_warnings with check_warnings when it makes sense. Use assertRa...Florent Xicluna2010-03-311-6/+3
* Remove unused imports in test modules.Georg Brandl2010-02-071-2/+2
* Increased the overflow value on test_dealloc to make sure that it is big enou...Ezio Melotti2010-01-231-1/+5
* Issue #3299: Fix possible crash in the _sre module when given badAntoine Pitrou2010-01-141-0/+6
* don't need to mess up sys.pathBenjamin Peterson2009-10-151-3/+0
* Issue #6561: '\d' regular expression should not match characters ofMark Dickinson2009-07-281-0/+21
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-1/+1
* - Issue #3629: Fix sre "bytecode" validator for an end case.Guido van Rossum2008-09-101-0/+4
* warnings.catch_warnings() now returns a list or None instead of the customBrett Cannon2008-09-091-2/+2
* #3654: fix duplicate test method name. Review by Benjamin P.Georg Brandl2008-08-241-4/+2
* Closing issue1761.Amaury Forgeot d'Arc2008-01-101-0/+12
* Issue #1700, reported by Nguyen Quan Son, fix by Fredruk Lundh:Guido van Rossum2008-01-031-0/+30
* Fix issue 1661: Flags argument silently ignored in re functions with compiled...Raymond Hettinger2007-12-191-0/+8
* Patch # 1140 (my code, approved by Effbot).Guido van Rossum2007-09-101-0/+25
* Remove test.test_support.guard_warnings_filter.Brett Cannon2007-08-141-2/+2
* Whitespace normalization. Ugh, we really need to do this more often.Neal Norwitz2007-04-251-1/+1
* Array module's buffer interface can now handle empty arrays.Raymond Hettinger2007-04-021-0/+7
* Bug #1675967: re patterns pickled with older Python versions canŽiga Seilnacht2007-03-211-1/+7
* Rename sre.py -> re.pyNeal Norwitz2006-03-161-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