Liking cljdoc? Tell your friends :D

libpython-clj.jna.concrete.import


PyImport_AddModuleclj

(PyImport_AddModule name)

Return value: Borrowed reference.

Similar to PyImport_AddModuleObject(), but the name is a UTF-8 encoded string instead of a Unicode object.

Return value: Borrowed reference.

Similar to PyImport_AddModuleObject(), but the name is a UTF-8 encoded string instead
of a Unicode object.
sourceraw docstring

PyImport_GetModuleDictclj

(PyImport_GetModuleDict)

Return value: Borrowed reference.

Return the dictionary used for the module administration (a.k.a. sys.modules). Note that this is a per-interpreter variable.

Return value: Borrowed reference.

Return the dictionary used for the module administration (a.k.a. sys.modules). Note
that this is a per-interpreter variable.
sourceraw docstring

PyImport_Importclj

(PyImport_Import name)

Return value: New reference.

This is a higher-level interface that calls the current “import hook function” (with an explicit level of 0, meaning absolute import). It invokes the import() function from the builtins of the current globals. This means that the import is done using whatever import hooks are installed in the current environment.

This function always uses absolute imports.

Return value: New reference.

This is a higher-level interface that calls the current “import hook function” (with
an explicit level of 0, meaning absolute import). It invokes the __import__()
function from the __builtins__ of the current globals. This means that the import is
done using whatever import hooks are installed in the current environment.

This function always uses absolute imports.
sourceraw docstring

PyImport_ImportModuleclj

(PyImport_ImportModule name)

Return value: New reference.

This is a simplified interface to PyImport_ImportModuleEx() below, leaving the globals and locals arguments set to NULL and level set to 0. When the name argument contains a dot (when it specifies a submodule of a package), the fromlist argument is set to the list ['*'] so that the return value is the named module rather than the top-level package containing it as would otherwise be the case. (Unfortunately, this has an additional side effect when name in fact specifies a subpackage instead of a submodule: the submodules specified in the package’s all variable are loaded.) Return a new reference to the imported module, or NULL with an exception set on failure. A failing import of a module doesn’t leave the module in sys.modules.

This function always uses absolute imports.

Return value: New reference.

This is a simplified interface to PyImport_ImportModuleEx() below, leaving the
globals and locals arguments set to NULL and level set to 0. When the name argument
contains a dot (when it specifies a submodule of a package), the fromlist argument is
set to the list ['*'] so that the return value is the named module rather than the
top-level package containing it as would otherwise be the case. (Unfortunately, this
has an additional side effect when name in fact specifies a subpackage instead of a
submodule: the submodules specified in the package’s __all__ variable are loaded.)
Return a new reference to the imported module, or NULL with an exception set on
failure. A failing import of a module doesn’t leave the module in sys.modules.

This function always uses absolute imports.
sourceraw docstring

PyImport_ImportModuleLevelclj

(PyImport_ImportModuleLevel name globals locals fromlist level)

Return value: New reference.

Similar to PyImport_ImportModuleLevelObject(), but the name is a UTF-8 encoded
string instead of a Unicode object.

 Changed in version 3.3: Negative values for level are no longer accepted.

(documentation from python import function import(name, globals=None, locals=None, fromlist=(), level=0)

This function is invoked by the import statement. It can be replaced (by importing the builtins module and assigning to builtins.import) in order to change semantics of the import statement, but doing so is strongly discouraged as it is usually simpler to use import hooks (see PEP 302) to attain the same goals and does not cause issues with code which assumes the default import implementation is in use. Direct use of import() is also discouraged in favor of importlib.import_module().

The function imports the module name, potentially using the given globals and locals to determine how to interpret the name in a package context. The fromlist gives the names of objects or submodules that should be imported from the module given by name. The standard implementation does not use its locals argument at all, and uses its globals only to determine the package context of the import statement.

level specifies whether to use absolute or relative imports. 0 (the default) means only perform absolute imports. Positive values for level indicate the number of parent directories to search relative to the directory of the module calling import() (see PEP 328 for the details).

When the name variable is of the form package.module, normally, the top-level package (the name up till the first dot) is returned, not the module named by name. However, when a non-empty fromlist argument is given, the module named by name is returned.

For example, the statement import spam results in bytecode resembling the following code:

spam = import('spam', globals(), locals(), [], 0)

The statement import spam.ham results in this call:

spam = import('spam.ham', globals(), locals(), [], 0)

Note how import() returns the toplevel module here because this is the object that is bound to a name by the import statement.

On the other hand, the statement from spam.ham import eggs, sausage as saus results in

_temp = import('spam.ham', globals(), locals(), ['eggs', 'sausage'], 0) eggs = _temp.eggs saus = _temp.sausage

Here, the spam.ham module is returned from import(). From this object, the names to import are retrieved and assigned to their respective names.

If you simply want to import a module (potentially within a package) by name, use importlib.import_module().

Changed in version 3.3: Negative values for level are no longer supported (which also changes the default value to 0).

Return value: New reference.

    Similar to PyImport_ImportModuleLevelObject(), but the name is a UTF-8 encoded
    string instead of a Unicode object.

     Changed in version 3.3: Negative values for level are no longer accepted.


(documentation from python __import__ function
 __import__(name, globals=None, locals=None, fromlist=(), level=0)


This function is invoked by the import statement. It can be replaced (by importing the
builtins module and assigning to builtins.__import__) in order to change semantics of
the import statement, but doing so is strongly discouraged as it is usually simpler to
use import hooks (see PEP 302) to attain the same goals and does not cause issues with
code which assumes the default import implementation is in use. Direct use of
__import__() is also discouraged in favor of importlib.import_module().

The function imports the module name, potentially using the given globals and locals to
determine how to interpret the name in a package context. The fromlist gives the names
of objects or submodules that should be imported from the module given by name. The
standard implementation does not use its locals argument at all, and uses its globals
only to determine the package context of the import statement.

level specifies whether to use absolute or relative imports. 0 (the default) means only
perform absolute imports. Positive values for level indicate the number of parent
directories to search relative to the directory of the module calling __import__() (see
PEP 328 for the details).

When the name variable is of the form package.module, normally, the top-level package
(the name up till the first dot) is returned, not the module named by name. However,
when a non-empty fromlist argument is given, the module named by name is returned.

For example, the statement import spam results in bytecode resembling the following
code:

spam = __import__('spam', globals(), locals(), [], 0)

The statement import spam.ham results in this call:

spam = __import__('spam.ham', globals(), locals(), [], 0)

Note how __import__() returns the toplevel module here because this is the object that
is bound to a name by the import statement.

On the other hand, the statement from spam.ham import eggs, sausage as saus results in

_temp = __import__('spam.ham', globals(), locals(), ['eggs', 'sausage'], 0)
eggs = _temp.eggs
saus = _temp.sausage

Here, the spam.ham module is returned from __import__(). From this object, the names to
import are retrieved and assigned to their respective names.

If you simply want to import a module (potentially within a package) by name, use
importlib.import_module().

Changed in version 3.3: Negative values for level are no longer supported (which also
changes the default value to 0).
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close