Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(4) | Call(2) | Derive(0) | Import(2)
src/p/y/py2app-0.8/py2app/build_app.py py2app(Download)
from py2app.create_appbundle import create_appbundle from py2app.create_pluginbundle import create_pluginbundle from py2app.util import \ fancy_split, byte_compile, make_loader, imp_find_module, \ copy_tree, fsencoding, strip_files, in_system_path, makedirs, \
def get_bootstrap(self, bootstrap): if isinstance(bootstrap, basestring): if not os.path.exists(bootstrap): bootstrap = imp_find_module(bootstrap)[1] return bootstrap
src/p/y/py2app-0.8/py2app/recipes/PIL/__init__.py py2app(Download)
from py2app.util import imp_find_module import os, sys, glob try: from cStringIO import StringIO
try: sys.path.insert(0, folder) imp_find_module(mod) del sys.path[0] except ImportError: