[code.view]

[top] / python / PyMOTW / fnmatch / fnmatch_translate.py

     #!/usr/bin/env python
     # encoding: utf-8
     #
     # Copyright (c) 2008 Doug Hellmann All rights reserved.
     #
     """Translate a glob-style pattern to a regular expression.
     """
     
     __version__ = "$Id$"
     #end_pymotw_header
     
     import fnmatch
     
     pattern = 'fnmatch_*.py'
     print 'Pattern :', pattern
     print 'Regex   :', fnmatch.translate(pattern)

[top] / python / PyMOTW / fnmatch / fnmatch_translate.py

contact | logmethods.com