Previous  1 | 2 | 3  
All Samples(6)  |  Call(0)  |  Derive(0)  |  Import(6)
Abstract base for dependency resolution errors

All Samples(6)  |  Call(6)  |  Derive(0)  |  Import(0)
Register `provider_factory` to make providers for `loader_type`

`loader_type` is the type or class of a PEP 302 ``module.__loader__``,
and `provider_factory` is a function that, passed a *module* object,
returns an ``IResourceProvider`` for that module.

All Samples(0)  |  Call(0)  |  Derive(0)  |  Import(0)
int(x[, base]) -> integer

Convert a string or number to an integer, if possible.  A floating point
argument will be truncated towards zero (this does not include a string
representation of a floating point number!)  When converting a string, use
the optional base.  It is an error to supply a base when converting a
non-string.  If base is zero, the proper base is guessed based on the
string content.  If the argument is outside the integer range a
long object will be returned instead.

All Samples(2)  |  Call(0)  |  Derive(0)  |  Import(2)
Compiled regular expression objects

All Samples(4)  |  Call(4)  |  Derive(0)  |  Import(0)
No Document.

All Samples(4)  |  Call(4)  |  Derive(0)  |  Import(0)
No Document.

All Samples(4)  |  Call(4)  |  Derive(0)  |  Import(0)
Return the EntryPoint object for `group`+`name`, or ``None``

All Samples(4)  |  Call(3)  |  Derive(0)  |  Import(1)
Invoke `callback` for all distributions (including existing ones)

All Samples(3)  |  Call(2)  |  Derive(0)  |  Import(1)
Metadata provider for .egg files

All Samples(1)  |  Call(0)  |  Derive(1)  |  Import(0)
Resource support for zips and eggs

All Samples(2)  |  Call(2)  |  Derive(0)  |  Import(0)
Set the base path where resources will be extracted to, if needed.

If you do not call this routine before any extractions take place, the
path defaults to the return value of ``get_default_cache()``.  (Which
is based on the ``PYTHON_EGG_CACHE`` environment variable, with various
platform-specific fallbacks.  See that routine's documentation for more
details.)

Resources are extracted to subdirectories of this path based upon
information given by the ``IResourceProvider``.  You may set this to a(more...)

All Samples(2)  |  Call(2)  |  Derive(0)  |  Import(0)
Determine the default cache location

This returns the ``PYTHON_EGG_CACHE`` environment variable, if set.
Otherwise, on Windows, it returns a "Python-Eggs" subdirectory of the
"Application Data" directory.  On all other systems, it's "~/.python-eggs".

All Samples(2)  |  Call(1)  |  Derive(0)  |  Import(1)
Return this platform's string for platform-specific distributions

XXX Currently this is the same as ``distutils.util.get_platform()``, but it
needs some hacks for Linux and Mac OS X.

All Samples(0)  |  Call(0)  |  Derive(0)  |  Import(0)
dict() -> new empty dictionary
dict(mapping) -> new dictionary initialized from a mapping object's
    (key, value) pairs
dict(iterable) -> new dictionary initialized as if via:
    d = {}
    for k, v in iterable:
        d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
    in the keyword argument list.  For example:  dict(one=1, two=2)

All Samples(1)  |  Call(0)  |  Derive(0)  |  Import(1)
Ensure that previously-declared namespace packages include path_item

All Samples(0)  |  Call(0)  |  Derive(0)  |  Import(0)
int(x[, base]) -> integer

Convert a string or number to an integer, if possible.  A floating point
argument will be truncated towards zero (this does not include a string
representation of a floating point number!)  When converting a string, use
the optional base.  It is an error to supply a base when converting a
non-string.  If base is zero, the proper base is guessed based on the
string content.  If the argument is outside the integer range a
long object will be returned instead.

All Samples(0)  |  Call(0)  |  Derive(0)  |  Import(0)
int(x[, base]) -> integer

Convert a string or number to an integer, if possible.  A floating point
argument will be truncated towards zero (this does not include a string
representation of a floating point number!)  When converting a string, use
the optional base.  It is an error to supply a base when converting a
non-string.  If base is zero, the proper base is guessed based on the
string content.  If the argument is outside the integer range a
long object will be returned instead.

All Samples(1)  |  Call(1)  |  Derive(0)  |  Import(0)
Return this platform's maximum compatible version.

distutils.util.get_platform() normally reports the minimum version
of Mac OS X that would be required to *use* extensions produced by
distutils.  But what we want when checking compatibility is to know the
version of Mac OS X that we are *running*.  To allow usage of packages that
explicitly require a newer version of Mac OS X, we must also know the
current version of the OS.

If this condition occurs for any other platform with a version in its(more...)

All Samples(1)  |  Call(1)  |  Derive(0)  |  Import(0)
Yield distributions accessible on a sys.path directory

All Samples(0)  |  Call(0)  |  Derive(0)  |  Import(0)
Retrieve a PEP 302 importer for the given path item

The returned importer is cached in sys.path_importer_cache
if it was newly created by a path hook.

If there is no importer, a wrapper around the basic import
machinery is returned. This wrapper is never inserted into
the importer cache (None is inserted instead).

The cache (or part of it) can be cleared manually if a(more...)

Previous  1 | 2 | 3