diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-08-17 22:54:21 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-08-17 22:54:21 (GMT) |
commit | 6b06da5395907e0e4df84b98d01f1e8b122591aa (patch) | |
tree | aa4812273345125946c2e6df0905d70b0cdf8277 /Include | |
parent | 0e5a41b8f5b87bf07ed6368df5a84137d3e4e4da (diff) | |
download | cpython-6b06da5395907e0e4df84b98d01f1e8b122591aa.zip cpython-6b06da5395907e0e4df84b98d01f1e8b122591aa.tar.gz cpython-6b06da5395907e0e4df84b98d01f1e8b122591aa.tar.bz2 |
Remove unused functions _PyImport_FindModule and _PyImport_IsScript
Diffstat (limited to 'Include')
-rw-r--r-- | Include/import.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/import.h b/Include/import.h index 923fbca..3311581 100644 --- a/Include/import.h +++ b/Include/import.h @@ -38,9 +38,6 @@ PyAPI_FUNC(int) _PyImport_ReleaseLock(void); #define _PyImport_ReleaseLock() 1 #endif -PyAPI_FUNC(struct filedescr *) _PyImport_FindModule( - const char *, PyObject *, char *, size_t, FILE **, PyObject **); -PyAPI_FUNC(int) _PyImport_IsScript(struct filedescr *); PyAPI_FUNC(void) _PyImport_ReInitLock(void); PyAPI_FUNC(PyObject *)_PyImport_FindExtension(char *, char *); |