summaryrefslogtreecommitdiff
path: root/Include/sysmodule.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-12-15 22:01:39 +0000
committerGuido van Rossum <guido@python.org>2000-12-15 22:01:39 +0000
commit429b41e5ae0f4a20b55328f87daf1f2817f6a068 (patch)
treeaa7f4c825d1bb2df65fe8251a6eb9a48eba8a79e /Include/sysmodule.h
parent47f5fdc1144e6f88c09ce790c8d5b9653c7a6d65 (diff)
downloadcpython-git-429b41e5ae0f4a20b55328f87daf1f2817f6a068.tar.gz
Add declarations for PySys_ResetWarnOptions() and
PySys_AddWarnOption().
Diffstat (limited to 'Include/sysmodule.h')
-rw-r--r--Include/sysmodule.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/sysmodule.h b/Include/sysmodule.h
index ca3aff7b4d..92f2207be3 100644
--- a/Include/sysmodule.h
+++ b/Include/sysmodule.h
@@ -19,6 +19,9 @@ DL_IMPORT(void) PySys_WriteStderr(const char *format, ...);
extern DL_IMPORT(PyObject *) _PySys_TraceFunc, *_PySys_ProfileFunc;
extern DL_IMPORT(int) _PySys_CheckInterval;
+DL_IMPORT(void) PySys_ResetWarnOptions(void);
+DL_IMPORT(void) PySys_AddWarnOption(char *);
+
#ifdef __cplusplus
}
#endif