All Samples(11) | Call(0) | Derive(0) | Import(11)
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.)
src/s/e/see-HEAD/see/documentTypes/__init__.py see(Download)
import os from glob import fnmatch import wx from wx.lib import docview
src/s/e/see-HEAD/see/app/topFrame.py see(Download)
import os
import sys
from cStringIO import StringIO
from glob import fnmatch
if __debug__:
import pdb
src/s/e/see-HEAD/see/app/seeApp.py see(Download)
import os import sys from cStringIO import StringIO from glob import fnmatch import wx
src/s/e/see-HEAD/see/see.py see(Download)
import os import sys from cStringIO import StringIO from glob import fnmatch import wx
src/p/i/pida-0.6.2/pida/services/grepper/grepper.py pida(Download)
import os, re, cgi import gtk, gobject from glob import fnmatch from pygtkhelpers.ui.objectlist import Column from pida.ui.views import PidaView
src/p/i/pida-0.6.2/pida/core/doctype.py pida(Download)
""" from glob import fnmatch import charfinder from collections import defaultdict
src/p/i/pida-0.6.2/pida-plugins/filesearch/filters.py pida(Download)
import gtk import sre_constants from glob import fnmatch from os.path import basename from pida.core.locale import Locale
src/p/y/py-archimporter-HEAD/trunk/lib/archimporter/aeszipimporter.py py-archimporter(Download)
""" import os,sys from glob import fnmatch from StringIO import StringIO from zipfile import ZipFile from Crypto.Cipher import AES
src/p/y/py-archimporter-HEAD/lib/archimporter/aeszipimporter.py py-archimporter(Download)
""" import os,sys from glob import fnmatch from StringIO import StringIO from zipfile import ZipFile from Crypto.Cipher import AES
src/z/3/z3c.pypimirror-1.0.16/src/z3c/pypimirror/mirror.py z3c.pypimirror(Download)
import urlparse import pkg_resources from BeautifulSoup import BeautifulSoup from glob import fnmatch from logger import getLogger import HTMLParser try:
1 | 2 Next