History log of /external/python/cpython2/Lib/test/test_re.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
0b5f22d371c6220b1a2e7d0f084782e21b4fa6c4 11-Sep-2016 Serhiy Storchaka <storchaka@gmail.com> Backported tests for issue #28070.
/external/python/cpython2/Lib/test/test_re.py
4809d1fccd81bd3e1e4b08152545cfd88b69231c 20-Feb-2015 Serhiy Storchaka <storchaka@gmail.com> Issues #814253, #9179: Warnings now are raised when group references and
conditional group references are used in lookbehind assertions in regular
expressions.
/external/python/cpython2/Lib/test/test_re.py
f8c8d2e36640ee44da4faa42cc3d58ac395cd03f 30-Nov-2014 Benjamin Peterson <benjamin@python.org> backout fac649bf2d10 (#9179) for further consideration
/external/python/cpython2/Lib/test/test_re.py
e927757df62e62f5d45640ee76e4048703d8d419 09-Nov-2014 Serhiy Storchaka <storchaka@gmail.com> Issue #12728: Different Unicode characters having the same uppercase but
different lowercase are now matched in case-insensitive regular expressions.
/external/python/cpython2/Lib/test/test_re.py
15ea870e290b7f6afaee89231b105404214ba6ad 07-Nov-2014 Serhiy Storchaka <storchaka@gmail.com> Issues #814253, #9179: Group references and conditional group references now
work in lookbehind assertions in regular expressions.
/external/python/cpython2/Lib/test/test_re.py
e9e54ae2228e195e046e6325de018374b3247d2d 31-Oct-2014 Serhiy Storchaka <storchaka@gmail.com> Issue #17381: Fixed ranges handling in case-insensitive regular expressions.
/external/python/cpython2/Lib/test/test_re.py
d4c7290368a82a265c9905dc5c1e95591fb96333 30-Oct-2014 Serhiy Storchaka <storchaka@gmail.com> Issue #22410: Module level functions in the re module now cache compiled
locale-dependent regular expressions taking into account the locale.
/external/python/cpython2/Lib/test/test_re.py
bc4ece5775acfd56e09ee074a68f1fd379a1d238 01-Oct-2014 Benjamin Peterson <benjamin@python.org> allow longs as indexes to group() (closes #22530)
/external/python/cpython2/Lib/test/test_re.py
c0799e3a26f5da0613e7b7506e1d717750b84530 21-Sep-2014 Serhiy Storchaka <storchaka@gmail.com> Issue #22423: Fixed debugging output of the GROUPREF_EXISTS opcode in the re
module.
/external/python/cpython2/Lib/test/test_re.py
038fac67c02d85df2d34f1092a51db31f758bb63 15-Sep-2014 Serhiy Storchaka <storchaka@gmail.com> Test re pickling for all protocols.
/external/python/cpython2/Lib/test/test_re.py
7644ff1fb1860ffb5ce83342349f8b905dac633f 14-Sep-2014 Serhiy Storchaka <storchaka@gmail.com> Now re tests work again on Unicode-disabled build.
Simplified existing detections of Unicode-disabled build.
/external/python/cpython2/Lib/test/test_re.py
ed5ea15bda1b0b47edf1354ee8a3e1e8bed0993c 14-Sep-2014 Serhiy Storchaka <storchaka@gmail.com> Use more appropriate asserts in re tests.
/external/python/cpython2/Lib/test/test_re.py
e50fe4c9eb279632caf9a5084706c5988f9049f6 05-Mar-2014 Serhiy Storchaka <storchaka@gmail.com> Issue #20283: RE pattern methods now accept the string keyword parameters
as documented. The pattern and source keyword parameters are left as
deprecated aliases.
/external/python/cpython2/Lib/test/test_re.py
f581411255e67c4b79d7c1a66c8e791cf8ff3b67 03-Feb-2014 Antoine Pitrou <solipsis@pitrou.net> Issue #20426: When passing the re.DEBUG flag, re.compile() displays the debug output every time it is called, regardless of the compilation cache.
/external/python/cpython2/Lib/test/test_re.py
1f70221b861a3714735251d57695b2f472d0599b 10-Dec-2013 Zachary Ware <zachary.ware@gmail.com> Issue #19572: More silently skipped tests explicitly skipped.
/external/python/cpython2/Lib/test/test_re.py
22fb0dec30af4168c81744782a8bcc2453ac8055 24-Oct-2013 Serhiy Storchaka <storchaka@gmail.com> Issue #19327: Fixed the working of regular expressions with too big charset.
/external/python/cpython2/Lib/test/test_re.py
83737c632c9d12dc74074fc4884091bdfd2b15f0 19-Aug-2013 Serhiy Storchaka <storchaka@gmail.com> Issue #2537: Remove breaked check which prevented valid regular expressions.
Patch by Meador Inge.

See also issue #18647.
/external/python/cpython2/Lib/test/test_re.py
3ade66c203cda06227c5ac0c50857f9b7eb71c87 03-Aug-2013 Serhiy Storchaka <storchaka@gmail.com> Issue #17998: Fix an internal error in regular expression engine.
/external/python/cpython2/Lib/test/test_re.py
6077339270edd5786f7e18e0d71e88a33224cc82 14-Apr-2013 R David Murray <rdmurray@bitdance.com> #17341: Include name in re error message about invalid group name.

Patch by Jason Michalski.
/external/python/cpython2/Lib/test/test_re.py
6a8e2b49822b396870bc7afd2274ba50af931a65 16-Feb-2013 Serhiy Storchaka <storchaka@gmail.com> Issue #9669: Protect re against infinite loops on zero-width matching in
non-greedy repeat. Patch by Matthew Barnett.
/external/python/cpython2/Lib/test/test_re.py
e18e05cce92182e7f852e2d1569904190b8a9a40 16-Feb-2013 Serhiy Storchaka <storchaka@gmail.com> Issue #13169: The maximal repetition number in a regular expression has been
increased from 65534 to 2147483647 (on 32-bit platform) or 4294967294 (on
64-bit).
/external/python/cpython2/Lib/test/test_re.py
5c4e32b131af335d82e467ba95d6b30a414020e8 11-Jan-2013 Ezio Melotti <ezio.melotti@gmail.com> #13899: \A, \Z, and \B now correctly match the A, Z, and B literals when used inside character classes (e.g. [A]). Patch by Matthew Barnett.
/external/python/cpython2/Lib/test/test_re.py
74635c91776e4758598d635376dd57e406d3235c 03-Dec-2012 Antoine Pitrou <solipsis@pitrou.net> Fix test splitting in previous commit.
/external/python/cpython2/Lib/test/test_re.py
735f36edb8cc7ce46e5eb17319e77bc2bade3516 03-Dec-2012 Antoine Pitrou <solipsis@pitrou.net> Split the bigmem re test in two separate tests with different memory requirements.
/external/python/cpython2/Lib/test/test_re.py
b83575b0a5a798301a85a602a8d888329da0cf88 02-Dec-2012 Antoine Pitrou <solipsis@pitrou.net> Issue #10182: The re module doesn't truncate indices to 32 bits anymore.
Patch by Serhiy Storchaka.
/external/python/cpython2/Lib/test/test_re.py
b83ea144ccf39e2c9346d3a53cf67e154d29b4cb 20-Nov-2012 Antoine Pitrou <solipsis@pitrou.net> Issue #1160: Fix compiling large regular expressions on UCS2 builds.
Patch by Serhiy Storchaka.
/external/python/cpython2/Lib/test/test_re.py
ef3173877c78f1bbab1e570c68b2ce11460a9f5b 03-Nov-2012 Ezio Melotti <ezio.melotti@gmail.com> #12759: sre_parse now raises a proper error when the name of the group is missing. Initial patch by Serhiy Storchaka.
/external/python/cpython2/Lib/test/test_re.py
b56b6fff1f05df4dd3ffe92d0d5cf371e84af9ac 13-Mar-2012 Ezio Melotti <ezio.melotti@gmail.com> #14179: add tests for re.compile. Patch by Florian Mladitsch.
/external/python/cpython2/Lib/test/test_re.py
38ae5b2392c425dd87c89820cf4672cde9de2271 29-Feb-2012 Ezio Melotti <ezio.melotti@gmail.com> #10713: Improve documentation for \b and \B and add a few tests. Initial patch and tests by Martin Pool.
/external/python/cpython2/Lib/test/test_re.py
4664563f3401c3d8644ea66c8e4fe71deddcbb80 25-Mar-2011 Ezio Melotti <ezio.melotti@gmail.com> #2650: Refactor re.escape and its tests.
/external/python/cpython2/Lib/test/test_re.py
24b07bcba350bb86c4d6ca446e1564647a199868 15-Mar-2011 Ezio Melotti <ezio.melotti@gmail.com> #11515: fix several typos. Patch by Piotr Kasprzyk.
/external/python/cpython2/Lib/test/test_re.py
6257a7bbb2660ae75c44f2e71d7ac2ce73900f74 01-Apr-2010 Florent Xicluna <florent.xicluna@gmail.com> Replace catch_warnings with check_warnings when it makes sense. Use assertRaises context manager to simplify some tests.
/external/python/cpython2/Lib/test/test_re.py
a4f46e129294c686ef1effdd89c459bd9a624e6d 07-Feb-2010 Georg Brandl <georg@python.org> Remove unused imports in test modules.
/external/python/cpython2/Lib/test/test_re.py
0e4e73240a5dd2098c5e14a5dc745d235d456e07 23-Jan-2010 Ezio Melotti <ezio.melotti@gmail.com> Increased the overflow value on test_dealloc to make sure that it is big enough even for wide builds.
/external/python/cpython2/Lib/test/test_re.py
efdddd3370fc646836b6113247159846734fc129 14-Jan-2010 Antoine Pitrou <solipsis@pitrou.net> Issue #3299: Fix possible crash in the _sre module when given bad
argument values in debug mode. Patch by Victor Stinner.
/external/python/cpython2/Lib/test/test_re.py
96e319e5ac93c7342ca3edd2322dad688199fac6 15-Oct-2009 Benjamin Peterson <benjamin@python.org> don't need to mess up sys.path
/external/python/cpython2/Lib/test/test_re.py
fe67bd91685f89fbf95ee9727ce03d20dea3e9b8 28-Jul-2009 Mark Dickinson <dickinsm@gmail.com> Issue #6561: '\d' regular expression should not match characters of
category [No]; only those of category [Nd]. (Backport of r74237
from py3k.)
/external/python/cpython2/Lib/test/test_re.py
5c8da86f3a515ce1a6d5f27fd15e3c5f4d8e931e 01-Jul-2009 Benjamin Peterson <benjamin@python.org> convert usage of fail* to assert*
/external/python/cpython2/Lib/test/test_re.py
e3c4fd9cc04148e16dad3ca06af65008f2e73fe3 10-Sep-2008 Guido van Rossum <guido@python.org> - Issue #3629: Fix sre "bytecode" validator for an end case.
Reviewed by Amaury.
/external/python/cpython2/Lib/test/test_re.py
672237dc6ca1498eabac08554bcbc5bd0fd9ddaa 09-Sep-2008 Brett Cannon <bcannon@gmail.com> warnings.catch_warnings() now returns a list or None instead of the custom
WarningsRecorder object. This makes the API simpler to use as no special object
must be learned.

Closes issue 3781.
Review by Benjamin Peterson.
/external/python/cpython2/Lib/test/test_re.py
30de77b97da2f72888ac0e91dfda52caf5b98212 24-Aug-2008 Georg Brandl <georg@python.org> #3654: fix duplicate test method name. Review by Benjamin P.
/external/python/cpython2/Lib/test/test_re.py
d08a8ebf2a8fe9705a48468c9280445afd1df324 10-Jan-2008 Amaury Forgeot d'Arc <amauryfa@gmail.com> Closing issue1761.
Surprising behaviour of the "$" regexp: it matches the
end of the string, AND just before the newline at the end
of the string::

re.sub('$', '#', 'foo\n') == 'foo#\n#'

Python is consistent with Perl and the pcre library, so
we just document it.
Guido prefers "\Z" to match only the end of the string.
/external/python/cpython2/Lib/test/test_re.py
ae04c3356ed2aec0e9e2c39096a3ccd05722575a 03-Jan-2008 Guido van Rossum <guido@python.org> Issue #1700, reported by Nguyen Quan Son, fix by Fredruk Lundh:
Regular Expression inline flags not handled correctly for some unicode
characters. (Forward port from 2.5.2.)
/external/python/cpython2/Lib/test/test_re.py
80016c95554677cd172610501446b096edfb267c 19-Dec-2007 Raymond Hettinger <python@rcn.com> Fix issue 1661: Flags argument silently ignored in re functions with compiled regexes.
/external/python/cpython2/Lib/test/test_re.py
1ff91d95a280449cfd9c723a081cb7b19a52e758 11-Sep-2007 Guido van Rossum <guido@python.org> Patch # 1140 (my code, approved by Effbot).

Make sure the type of the return value of re.sub(x, y, z) is the type
of y+x (i.e. unicode if either is unicode, str if they are both str)
even if there are no substitutions or if x==z (which triggered various
special cases in join_list()).

Could be backported to 2.5; no need to port to 3.0.
/external/python/cpython2/Lib/test/test_re.py
2ee4128e9b4f481d5029fe4c8ada6c12ac64e2bd 14-Aug-2007 Brett Cannon <bcannon@gmail.com> Remove test.test_support.guard_warnings_filter.
test.test_support.catch_warning is more full-featured and provides the same
functionality.

Since guard_warnings_filter was added in 2.6 there is no
backwards-compatibility issues.
/external/python/cpython2/Lib/test/test_re.py
0d4c06e06e5ee1f3bb1fa8068114bd700d74864a 25-Apr-2007 Neal Norwitz <nnorwitz@gmail.com> Whitespace normalization. Ugh, we really need to do this more often.
You might want to review this change as it's my first time. Be gentle. :-)
/external/python/cpython2/Lib/test/test_re.py
01a807db2a4b2d39d8e9473e658b908ff58e1058 03-Apr-2007 Raymond Hettinger <python@rcn.com> Array module's buffer interface can now handle empty arrays.
/external/python/cpython2/Lib/test/test_re.py
7492e4260e4f6231f6f30a0f10f514115b9233cb 21-Mar-2007 Žiga Seilnacht <ziga.seilnacht@gmail.com> Bug #1675967: re patterns pickled with older Python versions can
now be unpickled. Will backport.
/external/python/cpython2/Lib/test/test_re.py
94a9c09e109706af64ae8796882baab2af25be2f 16-Mar-2006 Neal Norwitz <nnorwitz@gmail.com> Rename sre.py -> re.py
/external/python/cpython2/Lib/test/test_re.py
6fa0c5a452ea935977b283955a1d49e5e23d97dc 14-Sep-2005 Gustavo Niemeyer <gustavo@niemeyer.net> Bug #1202493: Fixing SRE parser to handle '{}' as perl does, rather than
considering it exactly like a '*'.
/external/python/cpython2/Lib/test/test_re.py
e7fa1af85be8ec540dbd17771ce6e29d821e5f20 03-Jun-2005 Michael W. Hudson <mwh@python.net> M-x untabify
/external/python/cpython2/Lib/test/test_re.py
3554cad009c84889ee0397a77a69ab30307b57ae 02-Jun-2005 Andrew M. Kuchling <amk@amk.ca> [Bug #1177831] Exercise (?(id)yes|no) for a group other than the first one
/external/python/cpython2/Lib/test/test_re.py
0e9980f75a203ee1b2ac28f76a76239446b271d6 12-Sep-2004 Tim Peters <tim.peters@gmail.com> Whitespace normalization.
/external/python/cpython2/Lib/test/test_re.py
0506c64086e2535335a58b9368d2b940abbf8c11 03-Sep-2004 Gustavo Niemeyer <gustavo@niemeyer.net> Fixing bug #817234, which made SRE get into an infinite loop on
empty final matches with finditer(). New test cases included
for this bug and for #581080.
/external/python/cpython2/Lib/test/test_re.py
a01a2ee933238dbd3e79bc3b07cfb703d40807a8 03-Sep-2004 Gustavo Niemeyer <gustavo@niemeyer.net> Applying modified version of patch #1018386, which fixes
some escaping bugs in SRE.
/external/python/cpython2/Lib/test/test_re.py
027bb633b6899a0847d81cb35cbccdff5a468766 31-May-2004 Raymond Hettinger <python@rcn.com> Add weakref support to sockets and re pattern objects.
/external/python/cpython2/Lib/test/test_re.py
7d9c6c7e8c1e381de7e96989c1332cf98d766f3a 07-May-2004 Martin v. Löwis <martin@v.loewis.de> Fix _sre.CODESIZE on 64-bit machines in UCS-4 mode. Fixes #931848.
Backported to 2.3.
/external/python/cpython2/Lib/test/test_re.py
9f62eccb6657abd5c6a4a4694e6fe8c80f8ccb12 20-Apr-2004 Hye-Shik Chang <hyeshik@gmail.com> SF #926075: Fixed the bug that returns a wrong pattern object for
a string or unicode object in sre.compile() when a different type
pattern with the same value exists.
/external/python/cpython2/Lib/test/test_re.py
58eb11cf62dd04ccc2c364b62fd51b4265e2e203 18-Jan-2004 Tim Peters <tim.peters@gmail.com> Whitespace normalization.
/external/python/cpython2/Lib/test/test_re.py
ad3fc44ccb40f2ad33c0d09f5a2dfbd4feb442eb 18-Oct-2003 Gustavo Niemeyer <gustavo@niemeyer.net> Implemented non-recursive SRE matching.
/external/python/cpython2/Lib/test/test_re.py
12723baceab61f8812d68575c962696cc4e77fa1 02-Jul-2003 Just van Rossum <just@letterror.com> Fix and test for bug #764548:
Use isinstance() instead of comparing types directly, to enable
subclasses of str and unicode to be used as patterns.
Blessed by /F.
/external/python/cpython2/Lib/test/test_re.py
6802c6e764a55cd7146cafae4aeb6902e6bfb7e9 02-Jul-2003 Just van Rossum <just@letterror.com> fixed typo in comment
/external/python/cpython2/Lib/test/test_re.py
25fe0bf91a9af669627460c2916ac1b6afdf78f3 20-Jun-2003 Gustavo Niemeyer <gustavo@niemeyer.net> Many new tests, based on gcov's coverage information.

From gcov's output (based on a locally changed _sre.c):

82.07% of 1372 source lines executed in file ./Modules/_sre.c
/external/python/cpython2/Lib/test/test_re.py
21d3a32b99c5763444c34c189ef653ac9745f3c4 01-May-2003 Walter Dörwald <walter@livinglogic.de> Combine the functionality of test_support.run_unittest()
and test_support.run_classtests() into run_unittest()
and use it wherever possible.

Also don't use "from test.test_support import ...", but
"from test import test_support" in a few spots.

From SF patch #662807.
/external/python/cpython2/Lib/test/test_re.py
3646ab98af41f37eacf9cdc9d711327956b911f0 27-Apr-2003 Gustavo Niemeyer <gustavo@niemeyer.net> Fix for part of the problem mentioned in #725149 by Greg Chapman.

This problem is related to a wrong behavior from mark_save/restore(),
which don't restore the mark_stack_base before restoring the marks.
Greg's suggestion was to change the asserts, which happen to be
the only recursive ops that can continue the loop, but the problem would
happen to any operation with the same behavior. So, rather than
hardcoding this into asserts, I have changed mark_save/restore() to
always restore the stackbase before restoring the marks.

Both solutions should fix these two cases, presented by Greg:

>>> re.match('(a)(?:(?=(b)*)c)*', 'abb').groups()
('b', None)
>>> re.match('(a)((?!(b)*))*', 'abb').groups()
('b', None, None)

The rest of the bug and patch in #725149 must be discussed further.
/external/python/cpython2/Lib/test/test_re.py
c34f2555bd414254f941d0659ba9c229b96ec728 27-Apr-2003 Gustavo Niemeyer <gustavo@niemeyer.net> Applied patch #725106, by Greg Chapman, fixing capturing groups
within repeats of alternatives. The only change to the original
patch was to convert the tests to the new test_re.py file.

This patch fixes cases like:

>>> re.match('((a)|b)*', 'abc').groups()
('b', '')

Which is wrong (it's impossible to match the empty string),
and incompatible with other regex systems, like the following
examples show:

% perl -e '"abc" =~ /^((a)|b)*/; print "$1 $2\n";'
b a

% echo "abc" | sed -r -e "s/^((a)|b)*/\1 \2|/"
b a|c
/external/python/cpython2/Lib/test/test_re.py
5ba0054e69602679f5e8e5c42c0054e57c3f1e3b 25-Apr-2003 Skip Montanaro <skip@pobox.com> final bit of tests converted from test_sre
/external/python/cpython2/Lib/test/test_re.py
1e703c627854868b449e6fc3e6495a1066ec27f4 25-Apr-2003 Skip Montanaro <skip@pobox.com> more tests converted from test_sre
/external/python/cpython2/Lib/test/test_re.py
2726fcd4b6d006476a9d7b908fceaac7b935eee4 25-Apr-2003 Skip Montanaro <skip@pobox.com> more tests from test_sre
/external/python/cpython2/Lib/test/test_re.py
7d9963fea8295962e501b23800aee57a15bd2b8e 25-Apr-2003 Skip Montanaro <skip@pobox.com> copy a few tests from test_sre
/external/python/cpython2/Lib/test/test_re.py
46144be02cbd6b8d6626c2e5048339364705c454 25-Apr-2003 Guido van Rossum <guido@python.org> Fix test_limitations(). The match there is *expected* to raise
RuntimeError.
/external/python/cpython2/Lib/test/test_re.py
8ed06da754209a68ff775856509dd2d5a144c14c 24-Apr-2003 Skip Montanaro <skip@pobox.com> first cut at unittest version of re tests
/external/python/cpython2/Lib/test/test_re.py
408b6d34de2b1a6ba690557def435adce9314184 31-Jul-2002 Barry Warsaw <barry@python.org> Complete the absolute import patch for the test suite. All relative
imports of test modules now import from the test package. Other
related oddities are also fixed (like DeprecationWarning filters that
weren't specifying the full import part, etc.). Also did a general
code cleanup to remove all "from test.test_support import *"'s. Other
from...import *'s weren't changed.
/external/python/cpython2/Lib/test/test_re.py
04f357cffef6d764f2f0ff2671dabde75ec250d1 23-Jul-2002 Barry Warsaw <barry@python.org> Get rid of relative imports in all unittests. Now anything that
imports e.g. test_support must do so using an absolute package name
such as "import test.test_support" or "from test import test_support".

This also updates the README in Lib/test, and gets rid of the
duplicate data dirctory in Lib/test/data (replaced by
Lib/email/test/data).

Now Tim and Jack can have at it. :)
/external/python/cpython2/Lib/test/test_re.py
e056e4d15cb1d70308e9cae92fa904dcb8941f3a 10-Aug-2001 Guido van Rossum <guido@python.org> Check in a testcase for SF bug #449000: re.sub(r'\n', ...) broke.
/external/python/cpython2/Lib/test/test_re.py
17741be4667004a38c912c3fdca00cff19a5c4e4 22-Mar-2001 Fredrik Lundh <fredrik@pythonware.com> SRE 2.1b1: don't do unicode tests under 1.5.2, or on unicode
strings/patterns.
/external/python/cpython2/Lib/test/test_re.py
2846b0ab417dbfc76d2f9b52b5613ad4fe8feb63 09-Feb-2001 Eric S. Raymond <esr@thyrsus.com> String method conversion.
(This one was trivial -- no actual string. references in it!)
/external/python/cpython2/Lib/test/test_re.py
3661908a6ac75026e4504d9f62a6ac2e2fb2ec5e 17-Jan-2001 Marc-André Lemburg <mal@egenix.com> This patch removes all uses of "assert" in the regression test suite
and replaces them with a new API verify(). As a result the regression
suite will also perform its tests in optimization mode.

Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum.
/external/python/cpython2/Lib/test/test_re.py
132dce22469f476f399d1bbc6d1cc2f7ba0110cc 13-Dec-2000 Fred Drake <fdrake@acm.org> Update the code to better reflect recommended style:

Use != instead of <> since <> is documented as "obsolescent".
Use "is" and "is not" when comparing with None or type objects.
/external/python/cpython2/Lib/test/test_re.py
004d5e6880940ddbb38460986ac62ee0f1bae97d 23-Oct-2000 Fred Drake <fdrake@acm.org> Make reindent.py happy (convert everything to 4-space indents!).
/external/python/cpython2/Lib/test/test_re.py
8ae9ce5e5b40f0e2fc809a08dbbede5079c7b8e7 18-Aug-2000 Fred Drake <fdrake@acm.org> Better conformance to the Python Style Guide: use spaces around operators.
/external/python/cpython2/Lib/test/test_re.py
8e6d571a7c7853a98e032859e79a624528ec8842 08-Aug-2000 Fredrik Lundh <fredrik@pythonware.com> -- enabled some temporarily disabled RE tests
-- added basic unicode tests to test_re
-- added test case for Sjoerd's xmllib problem to re_tests
/external/python/cpython2/Lib/test/test_re.py
1151a8cd616003e65b88717ed7e612b6b6e71484 08-Aug-2000 Fredrik Lundh <fredrik@pythonware.com> -- whitespace cleanup (more tests to be added in the next commit)
/external/python/cpython2/Lib/test/test_re.py
e6f164622fcb29ceef136bfe37ecd4785158c97f 03-Aug-2000 Andrew M. Kuchling <amk@amk.ca> Comment out repeated-group test for the moment
/external/python/cpython2/Lib/test/test_re.py
a3eacc472ce00d0579586d41bfd0df99f9bf039d 03-Aug-2000 Andrew M. Kuchling <amk@amk.ca> Add nasty test case that overflows the stack with a repeated group
/external/python/cpython2/Lib/test/test_re.py
2850d186156ca4af83a298d24fa7e96af9f4807c 30-Jun-2000 Guido van Rossum <guido@python.org> Switch to sre for regular expression matching (the new mini-re module
is actually by Fredrik Lundh). This will break the re tests --
Fredrik will fix this before the final release.
/external/python/cpython2/Lib/test/test_re.py
c364cf82283332522ebc139e2edb5c8247f61307 17-Jul-1998 Guido van Rossum <guido@python.org> Added tests for findall().
Added test for m.groups() with default.
Added a few prints announcing various tests in verbose mode.
/external/python/cpython2/Lib/test/test_re.py
1cd4d52f2f1fe52f3480f490bcc6ef4dc4e4de19 26-Jun-1998 Guido van Rossum <guido@python.org> Remove RCS and #! cruft at top.
/external/python/cpython2/Lib/test/test_re.py
8430c583da5eb966d1aecf882b6f7e6e31fcc26d 03-Apr-1998 Guido van Rossum <guido@python.org> AMK's latest
/external/python/cpython2/Lib/test/test_re.py
41360a4696f488e49e5409b3b1baf1fff6ae0044 26-Mar-1998 Guido van Rossum <guido@python.org> Mass check-in after untabifying all files that need it.
/external/python/cpython2/Lib/test/test_re.py
f473cb007b774cabcb712e8c4f36fbf2dae1b85d 14-Jan-1998 Guido van Rossum <guido@python.org> Added tests for qualified sub and split
/external/python/cpython2/Lib/test/test_re.py
f5910e42d129a860ae0f41cd23b136ad53a33a0d 30-Dec-1997 Guido van Rossum <guido@python.org> Add tests for re.L(OCALE).
/external/python/cpython2/Lib/test/test_re.py
dfa6790bd67bd6fc310834d3b087a574d93e6485 08-Dec-1997 Guido van Rossum <guido@python.org> New re version from AMK
/external/python/cpython2/Lib/test/test_re.py
9ec2ed466b5c1430f4980fcf0af1fe5e46adb25c 08-Oct-1997 Guido van Rossum <guido@python.org> Change test for re.sub() involving g<...> to use a multi-character
identifier. The previous re.py had a bug that wouldn't show up with
single-char identifier...
/external/python/cpython2/Lib/test/test_re.py
d807b7589b6dc26057e9754358335183ce9f7a7a 04-Sep-1997 Guido van Rossum <guido@python.org> The re test suite is very slow on slower hosts.
To save time, only run the first and last 10 tests except in verbose mode.
/external/python/cpython2/Lib/test/test_re.py
95e8053a9ff42a544197e562fdf4c462fc34e8b4 14-Aug-1997 Guido van Rossum <guido@python.org> 1.5a3 prerelease 1 from AMK
/external/python/cpython2/Lib/test/test_re.py
4994657c5fd97dbb1570a7a6cf837c85297d7b21 18-Jul-1997 Guido van Rossum <guido@python.org> Some new tests by Jeffrey
/external/python/cpython2/Lib/test/test_re.py
23b225741cf20b6c9e5a91bea7ba7045b94248d7 18-Jul-1997 Guido van Rossum <guido@python.org> Added tests for sub, subn, and split.
/external/python/cpython2/Lib/test/test_re.py
a0e4c1bffc3454345fd79708e9e43a2412ce1197 17-Jul-1997 Guido van Rossum <guido@python.org> Jeffrey's latest -- seems to solve most problems!
/external/python/cpython2/Lib/test/test_re.py
e8b81313db1af218f03e30a3bc8f30376a35ca3b 15-Jul-1997 Guido van Rossum <guido@python.org> Merged Jeffrey's changes in.
/external/python/cpython2/Lib/test/test_re.py
23b8d4c15e4338689c3ac0695fe981eaf62b0c3f 15-Jul-1997 Guido van Rossum <guido@python.org> Tweak re_tests and test_re to differentiate between
groups that have no value and groups that are out of bounds.
/external/python/cpython2/Lib/test/test_re.py
847ed4afb57a4d5449e6a28de13dcb5d8f9840fb 15-Jul-1997 Guido van Rossum <guido@python.org> More tweaks; re.py is nearly there...
/external/python/cpython2/Lib/test/test_re.py
1d8b7583dcc8ae0ad014208eb21cc05a5e57af76 11-Jul-1997 Guido van Rossum <guido@python.org> Removed the traceback output in non-verbose mode
/external/python/cpython2/Lib/test/test_re.py
035aae0f094212c51ba2c15ca64b83bddf667151 11-Jul-1997 Guido van Rossum <guido@python.org> Some small nits.
/external/python/cpython2/Lib/test/test_re.py
8e0ce30ce41e7674b4c2266e55d3c02f9e478531 11-Jul-1997 Guido van Rossum <guido@python.org> test suite for re.py
/external/python/cpython2/Lib/test/test_re.py