1 new changeset in py:

http://bitbucket.org/hpk42/py/changeset/3a7280b1ff87/
changeset:   3a7280b1ff87
user:        gutworth
date:        2011-06-19 02:30:54
summary:     pytest uses this function quite a lot, so let's not do an import
affected #:  1 file (21 bytes)

--- a/py/_path/common.py        Fri Jun 03 13:49:49 2011 -0500
+++ b/py/_path/common.py        Sat Jun 18 19:30:54 2011 -0500
@@ -368,6 +368,5 @@
         else:
             name = str(path) # path.strpath # XXX svn?
             pattern = '*' + path.sep + pattern
-        from fnmatch import fnmatch
-        return fnmatch(name, pattern)
+        return py.std.fnmatch.fnmatch(name, pattern)

Repository URL: https://bitbucket.org/hpk42/py/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
_______________________________________________
py-svn mailing list
py-svn@codespeak.net
http://codespeak.net/mailman/listinfo/py-svn

Reply via email to