Home
last modified time | relevance | path

Searched refs:pkg_resources (Results 1 – 18 of 18) sorted by relevance

/external/protobuf/python/
Dez_setup.py106 import pkg_resources
111 pkg_resources.require("setuptools>="+version); return
112 except pkg_resources.VersionConflict, e:
121 except pkg_resources.DistributionNotFound:
124 del pkg_resources, sys.modules['pkg_resources'] # reload ok
232 import pkg_resources
234 pkg_resources.require(req)
235 except pkg_resources.VersionConflict:
/external/antlr/antlr-3.4/runtime/Python/
Dez_setup.py87 import pkg_resources
89 pkg_resources.require("setuptools>="+version)
91 except pkg_resources.VersionConflict, e:
168 import pkg_resources
170 pkg_resources.require(req)
171 except pkg_resources.VersionConflict:
/external/chromium-trace/trace-viewer/third_party/Paste/tests/
D__init__.py6 import pkg_resources
7 pkg_resources.require('Paste')
Dtest_urlparser.py4 from pkg_resources import get_distribution
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/
Dconf.py2 import pkg_resources
4 version = release = pkg_resources.get_distribution('webob').version
Dnews.txt92 ``pkg_resources.get_distribution('webob').version`` instead.
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
D__init__.py4 import pkg_resources
5 pkg_resources.declare_namespace(__name__)
Durlparser.py13 import pkg_resources
15 pkg_resources = None variable
527 if pkg_resources is None:
530 self.egg = pkg_resources.get_distribution(egg_or_spec)
535 manager = pkg_resources.ResourceManager()
602 if pkg_resources is None:
/external/chromium-trace/trace-viewer/third_party/Paste/Paste.egg-info/
Dentry_points.txt5 pkg_resources = paste.urlparser:make_pkg_resources
DPKG-INFO64 in that module serving from Egg resources using ``pkg_resources``.
/external/chromium-trace/trace-viewer/third_party/Paste/
DREADME.rst56 in that module serving from Egg resources using ``pkg_resources``.
DPKG-INFO64 in that module serving from Egg resources using ``pkg_resources``.
/external/chromium-trace/trace-viewer/third_party/Paste/paste/util/
Dtemplate.py692 import sys, optparse, pkg_resources, os
695 dist = pkg_resources.get_distribution('Paste')
Dtemplate.py.orig697 import sys, optparse, pkg_resources, os
700 dist = pkg_resources.get_distribution('Paste')
Dtemplate.py.2015-04-30-123224697 import sys, optparse, pkg_resources, os
700 dist = pkg_resources.get_distribution('Paste')
/external/chromium-trace/trace-viewer/third_party/Paste/docs/
Ddeveloper-features.txt54 serve using the Setuptools ``pkg_resources`` resource API.
Dnews.txt1013 files found with ``pkg_resources`` (e.g., out of zipped Eggs).
1040 * Use ``pkg_resources.declare_namespace`` so that there are less
1044 ``pkg_resources.require`` first.
/external/nanopb-c/generator/
Dnanopb_generator.py11 import pkg_resources # pyinstaller / protobuf 2.5 seem to need these