History log of /external/python/cpython3/Lib/test/test_fnmatch.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
bd48d27944453ad83d3ce37b2c867fa0d59a1c15 10-Sep-2016 Serhiy Storchaka <storchaka@gmail.com> Issue #22493: Inline flags now should be used only at the start of the
regular expression. Deprecation warning is emitted if uses them in the
middle of the regular expression.
/external/python/cpython3/Lib/test/test_fnmatch.py
44b548dda872c0d4f30afd6b44fd74b053a55ad8 08-Sep-2016 R David Murray <rdmurray@bitdance.com> #27364: fix "incorrect" uses of escape character in the stdlib.

And most of the tools.

Patch by Emanual Barry, reviewed by me, Serhiy Storchaka, and
Martin Panter.
/external/python/cpython3/Lib/test/test_fnmatch.py
38c707e7e0322f9139bb51ad73ede1e3b46985ef 13-Apr-2015 Zachary Ware <zachary.ware@gmail.com> Issue #21741: Update 147 test modules to use test discovery.

I have compared output between pre- and post-patch runs of these tests
to make sure there's nothing missing and nothing broken, on both
Windows and Linux. The only differences I found were actually tests
that were previously *not* run.
/external/python/cpython3/Lib/test/test_fnmatch.py
6fdb74f0aeb53b755a4573e00947ed16922adb65 13-Aug-2010 Antoine Pitrou <solipsis@pitrou.net> Re-apply r83871.
/external/python/cpython3/Lib/test/test_fnmatch.py
f14c2632806ec19b0d58c2c1f721c6a31b535209 09-Aug-2010 Antoine Pitrou <solipsis@pitrou.net> Also temporarily revert r83871, to fix compilation on buildbots
/external/python/cpython3/Lib/test/test_fnmatch.py
5b0c1e07ca169feced6d6458f80c2b9ccc6227e0 09-Aug-2010 Raymond Hettinger <python@rcn.com> Issue 7846: fnmatch cache can grow without bound

Updated to solution to use the functools.lru_cache().
Restores the API so that purge() is not needed
(because the cache never gets big).
/external/python/cpython3/Lib/test/test_fnmatch.py
4b16e130cc0262699a186b1917b2a9896abe9f25 23-Jul-2010 Brett Cannon <bcannon@gmail.com> Add tests for fnmatch.filter and translate.

Partially closes issue 9356. Thanks to Brian Brazil for the patch.
/external/python/cpython3/Lib/test/test_fnmatch.py
0425a8ea729617a74ab343909687d98216d25524 10-Jul-2010 R. David Murray <rdmurray@bitdance.com> Fix 'refleak' introduced by fnmatch cache purge tests.

This introduces a 'purge' function for the fnmatch module analogous
to the 'purge' function in the re module.
/external/python/cpython3/Lib/test/test_fnmatch.py
ea340a317a412148333c4c48807efc3af18ae4b4 09-Jul-2010 R. David Murray <rdmurray@bitdance.com> 7846: limit fnmatch pattern cache to _MAXCACHE=100 entries.

Patch by Andrew Clegg.
/external/python/cpython3/Lib/test/test_fnmatch.py
c0e22b7889a4b8b5002a1ac4ae25273e6d30ea6f 14-Mar-2010 Georg Brandl <georg@python.org> Merged revisions 78101,78115,78117,78182,78188,78245,78386,78496 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
r78101 | georg.brandl | 2010-02-08 01:04:54 +0100 (Mo, 08 Feb 2010) | 1 line

Fix test_fnmatch.
........
r78115 | georg.brandl | 2010-02-08 23:40:51 +0100 (Mo, 08 Feb 2010) | 1 line

Fix missing string formatting placeholder.
........
r78117 | georg.brandl | 2010-02-08 23:48:37 +0100 (Mo, 08 Feb 2010) | 1 line

Convert test failure from output-producing to self.fail().
........
r78182 | georg.brandl | 2010-02-14 09:18:23 +0100 (So, 14 Feb 2010) | 1 line

#7926: fix stray parens.
........
r78188 | georg.brandl | 2010-02-14 14:38:12 +0100 (So, 14 Feb 2010) | 1 line

#7926: fix-up wording.
........
r78245 | georg.brandl | 2010-02-19 20:36:08 +0100 (Fr, 19 Feb 2010) | 1 line

#7967: PyXML is no more.
........
r78386 | georg.brandl | 2010-02-23 22:48:57 +0100 (Di, 23 Feb 2010) | 1 line

#6544: fix refleak in kqueue, occurring in certain error conditions.
........
r78496 | georg.brandl | 2010-02-27 15:58:08 +0100 (Sa, 27 Feb 2010) | 1 line

Link to http://www.python.org/dev/workflow/ from bugs page.
........
/external/python/cpython3/Lib/test/test_fnmatch.py
89fad14944b0ad25fd3afc1b183675042b6c6f6e 14-Mar-2010 Georg Brandl <georg@python.org> Merged revisions 78018,78035-78040,78042-78043,78046,78048-78052,78054,78059,78075-78080 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
r78018 | georg.brandl | 2010-02-06 11:08:21 +0100 (Sa, 06 Feb 2010) | 1 line

#7864: make deprecation notices a bit clearer.
........
r78035 | georg.brandl | 2010-02-06 23:44:17 +0100 (Sa, 06 Feb 2010) | 1 line

Fix duplicate import.
........
r78036 | georg.brandl | 2010-02-06 23:49:47 +0100 (Sa, 06 Feb 2010) | 1 line

Remove unused import.
........
r78037 | georg.brandl | 2010-02-06 23:59:15 +0100 (Sa, 06 Feb 2010) | 1 line

No need to assign the results of expressions used only for side effects.
........
r78038 | georg.brandl | 2010-02-07 00:02:29 +0100 (So, 07 Feb 2010) | 1 line

Add a missing import.
........
r78039 | georg.brandl | 2010-02-07 00:06:24 +0100 (So, 07 Feb 2010) | 1 line

Add missing imports.
........
r78040 | georg.brandl | 2010-02-07 00:08:00 +0100 (So, 07 Feb 2010) | 1 line

Fix a few UnboundLocalErrors in test_long.
........
r78042 | georg.brandl | 2010-02-07 00:12:12 +0100 (So, 07 Feb 2010) | 1 line

Add missing import.
........
r78043 | georg.brandl | 2010-02-07 00:12:19 +0100 (So, 07 Feb 2010) | 1 line

Remove duplicate test method.
........
r78046 | georg.brandl | 2010-02-07 00:18:00 +0100 (So, 07 Feb 2010) | 1 line

Fix various missing import/unbound name errors.
........
r78048 | georg.brandl | 2010-02-07 00:23:45 +0100 (So, 07 Feb 2010) | 1 line

We heard you like test failures so we put unbound locals in your test so that you can fail while you fail.
........
r78049 | georg.brandl | 2010-02-07 00:33:33 +0100 (So, 07 Feb 2010) | 1 line

Fix import/access for some identifiers. _TestSharedCTypes does not seem to be executed?
........
r78050 | georg.brandl | 2010-02-07 00:34:10 +0100 (So, 07 Feb 2010) | 1 line

Fix more unbound locals in code paths that do not seem to be used.
........
r78051 | georg.brandl | 2010-02-07 00:53:52 +0100 (So, 07 Feb 2010) | 1 line

Add missing import when running these tests standalone.
........
r78052 | georg.brandl | 2010-02-07 00:54:04 +0100 (So, 07 Feb 2010) | 1 line

Add missing import when running these tests standalone.
........
r78054 | georg.brandl | 2010-02-07 00:58:25 +0100 (So, 07 Feb 2010) | 1 line

Add missing import.
........
r78059 | georg.brandl | 2010-02-07 12:34:15 +0100 (So, 07 Feb 2010) | 1 line

Use "regexp" consistently.
........
r78075 | georg.brandl | 2010-02-07 13:16:12 +0100 (So, 07 Feb 2010) | 1 line

Fix another duplicated test method.
........
r78076 | georg.brandl | 2010-02-07 13:19:43 +0100 (So, 07 Feb 2010) | 1 line

Fix wrong usage of "except X, Y:".
........
r78077 | georg.brandl | 2010-02-07 13:25:50 +0100 (So, 07 Feb 2010) | 1 line

Fix two redefined test methods.
........
r78078 | georg.brandl | 2010-02-07 13:27:06 +0100 (So, 07 Feb 2010) | 1 line

Fix a redefined test method.
........
r78079 | georg.brandl | 2010-02-07 13:34:26 +0100 (So, 07 Feb 2010) | 1 line

Add a minimal test for fnmatchcase().
........
r78080 | georg.brandl | 2010-02-07 13:55:12 +0100 (So, 07 Feb 2010) | 1 line

Remove duplicate test method.
........
/external/python/cpython3/Lib/test/test_fnmatch.py
01099707dbc1b7c774253ac0cd278c2c09272a30 16-Aug-2009 Gregory P. Smith <greg@mad-scientist.com> Merged revisions 74475 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
r74475 | gregory.p.smith | 2009-08-16 11:52:58 -0700 (Sun, 16 Aug 2009) | 2 lines

Issue 6665: Fix fnmatch to properly match filenames with newlines in them.
........
/external/python/cpython3/Lib/test/test_fnmatch.py
c9c0f201fed21efcf669dbbf5f923eaf0eeb1db9 01-Jul-2009 Benjamin Peterson <benjamin@python.org> convert old fail* assertions to assert*
/external/python/cpython3/Lib/test/test_fnmatch.py
f0af3e30db9475ab68bcb1f1ce0b5581e214df76 02-Oct-2008 Guido van Rossum <guido@python.org> Issue #3187: Better support for "undecodable" filenames. Code by Victor
Stinner, with small tweaks by GvR.
/external/python/cpython3/Lib/test/test_fnmatch.py
ee8712cda46338d223509cc5751fd36509ad3860 20-May-2008 Benjamin Peterson <benjamin@python.org> #2621 rename test.test_support to test.support
/external/python/cpython3/Lib/test/test_fnmatch.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/cpython3/Lib/test/test_fnmatch.py
2e2be3760ccdfd4bdde4afdd66f4078022ba3b61 20-Sep-2001 Fred Drake <fdrake@acm.org> Change the PyUnit-based tests to use the test_main() approach. This
allows using the tests with unittest.py as a script. The tests will
still run when run as a script themselves.
/external/python/cpython3/Lib/test/test_fnmatch.py
970a53cb3ee836ca4c4551b8decf70c66996e445 22-May-2001 Fred Drake <fdrake@acm.org> Remove unused import.
/external/python/cpython3/Lib/test/test_fnmatch.py
91751143ebae8db295a7e15b4aeb831ea43ca123 21-Mar-2001 Fred Drake <fdrake@acm.org> Add test cases for the fnmatch module.
/external/python/cpython3/Lib/test/test_fnmatch.py