Current File : //home/strato/chroot/opt/RZpython2/lib/python2.7/fnmatch.pyo |
�
��#ec @ sa d Z d d l Z d d d d g Z i Z d Z d � Z d � Z d
� Z d � Z d � Z d S(
s� Filename matching with shell patterns.
fnmatch(FILENAME, PATTERN) matches according to the local convention.
fnmatchcase(FILENAME, PATTERN) always takes case in account.
The functions operate by translating the pattern into a regular
expression. They cache the compiled regular expressions for speed.
The function translate(PATTERN) returns a regular expression
corresponding to PATTERN. (It does not compile it.)
i����Nt filtert fnmatcht fnmatchcaset translateid c C s t j � d S( s Clear the pattern cacheN( t _cachet clear( ( ( s'