1991-02-19 08:39:46 -04:00
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* Module definition and import interface */
|
|
|
|
|
2000-07-08 20:37:28 -03:00
|
|
|
#ifndef Py_IMPORT_H
|
|
|
|
#define Py_IMPORT_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-09-11 05:03:14 -03:00
|
|
|
#ifndef Py_LIMITED_API
|
2018-01-29 15:33:57 -04:00
|
|
|
PyMODINIT_FUNC PyInit__imp(void);
|
2016-12-27 08:57:39 -04:00
|
|
|
#endif /* !Py_LIMITED_API */
|
2002-07-19 03:55:41 -03:00
|
|
|
PyAPI_FUNC(long) PyImport_GetMagicNumber(void);
|
2010-04-16 21:19:56 -03:00
|
|
|
PyAPI_FUNC(const char *) PyImport_GetMagicTag(void);
|
2011-02-22 19:38:34 -04:00
|
|
|
PyAPI_FUNC(PyObject *) PyImport_ExecCodeModule(
|
2013-10-19 15:03:34 -03:00
|
|
|
const char *name, /* UTF-8 encoded string */
|
2011-02-22 19:38:34 -04:00
|
|
|
PyObject *co
|
|
|
|
);
|
2002-07-19 03:55:41 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyImport_ExecCodeModuleEx(
|
2013-10-19 15:03:34 -03:00
|
|
|
const char *name, /* UTF-8 encoded string */
|
2011-02-22 19:38:34 -04:00
|
|
|
PyObject *co,
|
2013-10-19 15:03:34 -03:00
|
|
|
const char *pathname /* decoded from the filesystem encoding */
|
2011-02-22 19:38:34 -04:00
|
|
|
);
|
2010-04-16 21:19:56 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyImport_ExecCodeModuleWithPathnames(
|
2013-10-19 15:03:34 -03:00
|
|
|
const char *name, /* UTF-8 encoded string */
|
2011-02-22 19:38:34 -04:00
|
|
|
PyObject *co,
|
2013-10-19 15:03:34 -03:00
|
|
|
const char *pathname, /* decoded from the filesystem encoding */
|
|
|
|
const char *cpathname /* decoded from the filesystem encoding */
|
2011-02-22 19:38:34 -04:00
|
|
|
);
|
2016-12-27 08:57:39 -04:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000
|
2011-03-04 08:57:09 -04:00
|
|
|
PyAPI_FUNC(PyObject *) PyImport_ExecCodeModuleObject(
|
|
|
|
PyObject *name,
|
|
|
|
PyObject *co,
|
|
|
|
PyObject *pathname,
|
|
|
|
PyObject *cpathname
|
|
|
|
);
|
2016-12-27 08:57:39 -04:00
|
|
|
#endif
|
2002-07-19 03:55:41 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyImport_GetModuleDict(void);
|
2018-05-22 14:59:42 -03:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03070000
|
2017-09-15 19:35:20 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyImport_GetModule(PyObject *name);
|
2018-05-22 14:59:42 -03:00
|
|
|
#endif
|
2017-09-14 15:18:12 -03:00
|
|
|
#ifndef Py_LIMITED_API
|
|
|
|
PyAPI_FUNC(int) _PyImport_IsInitialized(PyInterpreterState *);
|
2017-09-15 19:35:20 -03:00
|
|
|
PyAPI_FUNC(PyObject *) _PyImport_GetModuleId(struct _Py_Identifier *name);
|
|
|
|
PyAPI_FUNC(PyObject *) _PyImport_AddModuleObject(PyObject *name,
|
|
|
|
PyObject *modules);
|
|
|
|
PyAPI_FUNC(int) _PyImport_SetModule(PyObject *name, PyObject *module);
|
|
|
|
PyAPI_FUNC(int) _PyImport_SetModuleString(const char *name, PyObject* module);
|
2017-09-14 15:18:12 -03:00
|
|
|
#endif
|
2016-12-27 08:57:39 -04:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000
|
2011-03-04 08:57:09 -04:00
|
|
|
PyAPI_FUNC(PyObject *) PyImport_AddModuleObject(
|
|
|
|
PyObject *name
|
|
|
|
);
|
2016-12-27 08:57:39 -04:00
|
|
|
#endif
|
2011-02-22 19:38:34 -04:00
|
|
|
PyAPI_FUNC(PyObject *) PyImport_AddModule(
|
|
|
|
const char *name /* UTF-8 encoded string */
|
|
|
|
);
|
|
|
|
PyAPI_FUNC(PyObject *) PyImport_ImportModule(
|
|
|
|
const char *name /* UTF-8 encoded string */
|
|
|
|
);
|
|
|
|
PyAPI_FUNC(PyObject *) PyImport_ImportModuleNoBlock(
|
|
|
|
const char *name /* UTF-8 encoded string */
|
|
|
|
);
|
|
|
|
PyAPI_FUNC(PyObject *) PyImport_ImportModuleLevel(
|
2011-05-25 11:29:00 -03:00
|
|
|
const char *name, /* UTF-8 encoded string */
|
2011-02-22 19:38:34 -04:00
|
|
|
PyObject *globals,
|
2011-03-14 16:54:52 -03:00
|
|
|
PyObject *locals,
|
|
|
|
PyObject *fromlist,
|
|
|
|
int level
|
|
|
|
);
|
2016-12-27 08:57:39 -04:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03050000
|
2011-03-14 16:54:52 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyImport_ImportModuleLevelObject(
|
|
|
|
PyObject *name,
|
|
|
|
PyObject *globals,
|
2011-02-22 19:38:34 -04:00
|
|
|
PyObject *locals,
|
|
|
|
PyObject *fromlist,
|
|
|
|
int level
|
|
|
|
);
|
2016-12-27 08:57:39 -04:00
|
|
|
#endif
|
2006-02-28 12:09:29 -04:00
|
|
|
|
|
|
|
#define PyImport_ImportModuleEx(n, g, l, f) \
|
2012-08-10 19:55:08 -03:00
|
|
|
PyImport_ImportModuleLevel(n, g, l, f, 0)
|
2006-02-28 12:09:29 -04:00
|
|
|
|
Merged revisions 59005-59040 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
I've tried to fix test_cmd_line_script but I wasn't able to get all tests
right. Nick, can you please have a look?
........
r59020 | facundo.batista | 2007-11-16 19:04:14 +0100 (Fri, 16 Nov 2007) | 12 lines
Now in find, rfind, index, and rindex, you can use None as defaults,
as usual with slicing (both with str and unicode strings). This
fixes issue 1259.
For str only the stringobject.c file was modified. But for unicode,
I needed to repeat in the four functions a lot of code, so created
a new function that does part of the job for them (and placed it in
find.h, following a suggestion of Barry).
Also added tests for this behaviour.
........
r59021 | facundo.batista | 2007-11-16 19:41:24 +0100 (Fri, 16 Nov 2007) | 4 lines
Fix for stupid error (I need to remember to do a full 'make clean + make'
cycle before the tests...). Sorry.
........
r59022 | facundo.batista | 2007-11-16 20:16:15 +0100 (Fri, 16 Nov 2007) | 3 lines
Made _ParseTupleFinds only defined to unicodeobject.c
........
r59024 | raymond.hettinger | 2007-11-17 02:51:22 +0100 (Sat, 17 Nov 2007) | 1 line
Fix signature in example
........
r59033 | brett.cannon | 2007-11-17 08:07:29 +0100 (Sat, 17 Nov 2007) | 5 lines
Remove a confusing sentence about pth files and which directories are searched
for them.
Closes issue #1431. Thanks Giambattista Bloisi for the help.
........
r59039 | nick.coghlan | 2007-11-18 12:56:28 +0100 (Sun, 18 Nov 2007) | 1 line
Patch #1739468: Directories and zipfiles containing __main__.py are now executable
........
2007-11-18 15:35:23 -04:00
|
|
|
PyAPI_FUNC(PyObject *) PyImport_GetImporter(PyObject *path);
|
2002-07-19 03:55:41 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyImport_Import(PyObject *name);
|
|
|
|
PyAPI_FUNC(PyObject *) PyImport_ReloadModule(PyObject *m);
|
|
|
|
PyAPI_FUNC(void) PyImport_Cleanup(void);
|
2016-12-27 08:57:39 -04:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000
|
2011-03-19 21:50:21 -03:00
|
|
|
PyAPI_FUNC(int) PyImport_ImportFrozenModuleObject(
|
|
|
|
PyObject *name
|
|
|
|
);
|
2016-12-27 08:57:39 -04:00
|
|
|
#endif
|
2011-02-22 19:38:34 -04:00
|
|
|
PyAPI_FUNC(int) PyImport_ImportFrozenModule(
|
2013-10-19 15:03:34 -03:00
|
|
|
const char *name /* UTF-8 encoded string */
|
2011-02-22 19:38:34 -04:00
|
|
|
);
|
2000-07-08 20:37:28 -03:00
|
|
|
|
2010-12-03 16:14:31 -04:00
|
|
|
#ifndef Py_LIMITED_API
|
Merged revisions 74841 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74841 | thomas.wouters | 2009-09-16 14:55:54 -0500 (Wed, 16 Sep 2009) | 23 lines
Fix issue #1590864, multiple threads and fork() can cause deadlocks, by
acquiring the import lock around fork() calls. This prevents other threads
from having that lock while the fork happens, and is the recommended way of
dealing with such issues. There are two other locks we care about, the GIL
and the Thread Local Storage lock. The GIL is obviously held when calling
Python functions like os.fork(), and the TLS lock is explicitly reallocated
instead, while also deleting now-orphaned TLS data.
This only fixes calls to os.fork(), not extension modules or embedding
programs calling C's fork() directly. Solving that requires a new set of API
functions, and possibly a rewrite of the Python/thread_*.c mess. Add a
warning explaining the problem to the documentation in the mean time.
This also changes behaviour a little on AIX. Before, AIX (but only AIX) was
getting the import lock reallocated, seemingly to avoid this very same
problem. This is not the right approach, because the import lock is a
re-entrant one, and reallocating would do the wrong thing when forking while
holding the import lock.
Will backport to 2.6, minus the tiny AIX behaviour change.
........
2009-10-04 17:32:25 -03:00
|
|
|
PyAPI_FUNC(void) _PyImport_AcquireLock(void);
|
|
|
|
PyAPI_FUNC(int) _PyImport_ReleaseLock(void);
|
|
|
|
|
2005-09-14 15:09:42 -03:00
|
|
|
PyAPI_FUNC(void) _PyImport_ReInitLock(void);
|
2004-10-07 03:46:25 -03:00
|
|
|
|
2013-12-09 20:19:58 -04:00
|
|
|
PyAPI_FUNC(PyObject *) _PyImport_FindBuiltin(
|
2017-09-14 15:18:12 -03:00
|
|
|
const char *name, /* UTF-8 encoded string */
|
|
|
|
PyObject *modules
|
2011-02-22 19:38:34 -04:00
|
|
|
);
|
2013-12-09 20:19:58 -04:00
|
|
|
PyAPI_FUNC(PyObject *) _PyImport_FindExtensionObject(PyObject *, PyObject *);
|
2017-09-14 15:18:12 -03:00
|
|
|
PyAPI_FUNC(PyObject *) _PyImport_FindExtensionObjectEx(PyObject *, PyObject *,
|
|
|
|
PyObject *);
|
2013-12-09 20:19:58 -04:00
|
|
|
PyAPI_FUNC(int) _PyImport_FixupBuiltin(
|
2011-02-22 19:38:34 -04:00
|
|
|
PyObject *mod,
|
2017-09-14 15:18:12 -03:00
|
|
|
const char *name, /* UTF-8 encoded string */
|
|
|
|
PyObject *modules
|
2011-02-22 19:38:34 -04:00
|
|
|
);
|
2017-09-14 15:18:12 -03:00
|
|
|
PyAPI_FUNC(int) _PyImport_FixupExtensionObject(PyObject*, PyObject *,
|
|
|
|
PyObject *, PyObject *);
|
1997-08-01 23:56:48 -03:00
|
|
|
|
1996-05-22 14:25:28 -03:00
|
|
|
struct _inittab {
|
2013-10-19 15:03:34 -03:00
|
|
|
const char *name; /* ASCII encoded string */
|
2008-06-11 02:26:20 -03:00
|
|
|
PyObject* (*initfunc)(void);
|
1996-05-22 14:25:28 -03:00
|
|
|
};
|
2010-12-03 16:14:31 -04:00
|
|
|
PyAPI_DATA(struct _inittab *) PyImport_Inittab;
|
|
|
|
PyAPI_FUNC(int) PyImport_ExtendInittab(struct _inittab *newtab);
|
|
|
|
#endif /* Py_LIMITED_API */
|
1996-05-22 14:25:28 -03:00
|
|
|
|
Merged revisions 59005-59040 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
I've tried to fix test_cmd_line_script but I wasn't able to get all tests
right. Nick, can you please have a look?
........
r59020 | facundo.batista | 2007-11-16 19:04:14 +0100 (Fri, 16 Nov 2007) | 12 lines
Now in find, rfind, index, and rindex, you can use None as defaults,
as usual with slicing (both with str and unicode strings). This
fixes issue 1259.
For str only the stringobject.c file was modified. But for unicode,
I needed to repeat in the four functions a lot of code, so created
a new function that does part of the job for them (and placed it in
find.h, following a suggestion of Barry).
Also added tests for this behaviour.
........
r59021 | facundo.batista | 2007-11-16 19:41:24 +0100 (Fri, 16 Nov 2007) | 4 lines
Fix for stupid error (I need to remember to do a full 'make clean + make'
cycle before the tests...). Sorry.
........
r59022 | facundo.batista | 2007-11-16 20:16:15 +0100 (Fri, 16 Nov 2007) | 3 lines
Made _ParseTupleFinds only defined to unicodeobject.c
........
r59024 | raymond.hettinger | 2007-11-17 02:51:22 +0100 (Sat, 17 Nov 2007) | 1 line
Fix signature in example
........
r59033 | brett.cannon | 2007-11-17 08:07:29 +0100 (Sat, 17 Nov 2007) | 5 lines
Remove a confusing sentence about pth files and which directories are searched
for them.
Closes issue #1431. Thanks Giambattista Bloisi for the help.
........
r59039 | nick.coghlan | 2007-11-18 12:56:28 +0100 (Sun, 18 Nov 2007) | 1 line
Patch #1739468: Directories and zipfiles containing __main__.py are now executable
........
2007-11-18 15:35:23 -04:00
|
|
|
PyAPI_DATA(PyTypeObject) PyNullImporter_Type;
|
1993-07-28 06:05:47 -03:00
|
|
|
|
2011-02-22 19:38:34 -04:00
|
|
|
PyAPI_FUNC(int) PyImport_AppendInittab(
|
|
|
|
const char *name, /* ASCII encoded string */
|
|
|
|
PyObject* (*initfunc)(void)
|
|
|
|
);
|
1998-06-29 17:34:46 -03:00
|
|
|
|
2010-12-03 16:14:31 -04:00
|
|
|
#ifndef Py_LIMITED_API
|
1996-06-17 14:05:01 -03:00
|
|
|
struct _frozen {
|
2013-03-13 16:06:39 -03:00
|
|
|
const char *name; /* ASCII encoded string */
|
|
|
|
const unsigned char *code;
|
2000-07-08 20:37:28 -03:00
|
|
|
int size;
|
1996-06-17 14:05:01 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Embedding apps may change this pointer to point to their favorite
|
|
|
|
collection of frozen modules: */
|
|
|
|
|
2013-03-13 16:06:39 -03:00
|
|
|
PyAPI_DATA(const struct _frozen *) PyImport_FrozenModules;
|
2010-12-03 16:14:31 -04:00
|
|
|
#endif
|
1996-06-17 14:05:01 -03:00
|
|
|
|
1993-07-28 06:05:47 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_IMPORT_H */
|