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
commit33231a276ae9ac84ae779531e9f346fb7719a4cb (patch)
tree62c6a2f59ca55d70dab74272d43be34ae68266e1 /Include/sysmodule.h
parent84d054eb9db92619cf937168fa94ec1c4b1a9427 (diff)
downloadcpython-33231a276ae9ac84ae779531e9f346fb7719a4cb.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