summaryrefslogtreecommitdiff
path: root/Include/moduleobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-02-19 20:51:52 +0000
committerGuido van Rossum <guido@python.org>1998-02-19 20:51:52 +0000
commitf1dc0615e913fd0028a2fa6fda9607b3edfa76d5 (patch)
treef2d858ecea20146e601215cf16d4072c32765720 /Include/moduleobject.h
parentc83db33781d9333581f90c1f427b2c64c4e7c0d8 (diff)
downloadcpython-git-f1dc0615e913fd0028a2fa6fda9607b3edfa76d5.tar.gz
Add internal routine _PyModule_Clear(), which does approximately what
clear_carefully() used to do in import.c. Differences: leave only __builtins__ alone in the 2nd pass; and don't clear the dictionary (on the theory that as long as there are references left to the dictionary, those might be destructors that might expect __builtins__ to be alive when they run; and __builtins__ can't normally be part of a cycle).
Diffstat (limited to 'Include/moduleobject.h')
-rw-r--r--Include/moduleobject.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/moduleobject.h b/Include/moduleobject.h
index a435b7f54d..03bc9f7b73 100644
--- a/Include/moduleobject.h
+++ b/Include/moduleobject.h
@@ -44,6 +44,7 @@ extern DL_IMPORT(PyTypeObject) PyModule_Type;
extern PyObject *PyModule_New Py_PROTO((char *));
extern PyObject *PyModule_GetDict Py_PROTO((PyObject *));
extern char *PyModule_GetName Py_PROTO((PyObject *));
+extern void _PyModule_Clear Py_PROTO((PyObject *));
#ifdef __cplusplus
}