Python fnmatch Functions
EditRocket provides the following information on fnmatch functions in the Python source code builder.
filter(names, pattern) - Return the subset of the list of names that match pattern.
fnmatch(filename, pattern) - Test whether the filename string matches the pattern string, returning true or false.
fnmatchcase(filename, pattern) - Test whether filename matches pattern, returning true or false; the comparison is case-sensitive.
translate(pattern) - Return the shell-style pattern converted to a regular expression.