diff -r 89c89d6e6c3c -r df315d0a8ab7 doc/api/python/pathaddition.match-module.html
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/doc/api/python/pathaddition.match-module.html Tue Sep 15 12:58:39 2009 +0100
@@ -0,0 +1,226 @@
+
+
+
+
+ pathaddition.match
+
+
+
+
+
+
+
+
+
+Module match
source code
+This module provides support for Ant-style wildcards,
+which are not the same as regular expressions (which are documented in the re module).
+
+
+
+
+
+
+
+
+ |
+
+
+ ant_match(name,
+ pattern,
+ casesensitive=True)
+ Check if name matches pattern (Ant-style wildcards). |
+
+ source code
+
+ |
+
+
+
+ |
+
+
+
+
+ |
+
+
+ |
+
+
+
+
+
+
+
+
+
+ |
+ _logger = logging.getLogger('path.match')
+ |
+
+
+
+
+ |
+ _cache = {}
+ |
+
+
+
+
+
+
+
+
+
+
+
+ Translate a Ant-style PATTERN to a regular expression.
+There is no way to quote meta-characters.
+
+
+ |
+
+
+
+
+
+
+
+
+
+