diff options
author | Guido van Rossum <guido@python.org> | 2000-12-15 22:01:39 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-12-15 22:01:39 (GMT) |
commit | 429b41e5ae0f4a20b55328f87daf1f2817f6a068 (patch) | |
tree | aa7f4c825d1bb2df65fe8251a6eb9a48eba8a79e /Include/sysmodule.h | |
parent | 47f5fdc1144e6f88c09ce790c8d5b9653c7a6d65 (diff) | |
download | cpython-429b41e5ae0f4a20b55328f87daf1f2817f6a068.zip cpython-429b41e5ae0f4a20b55328f87daf1f2817f6a068.tar.gz cpython-429b41e5ae0f4a20b55328f87daf1f2817f6a068.tar.bz2 |
Add declarations for PySys_ResetWarnOptions() and
PySys_AddWarnOption().
Diffstat (limited to 'Include/sysmodule.h')
-rw-r--r-- | Include/sysmodule.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/sysmodule.h b/Include/sysmodule.h index ca3aff7..92f2207 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 |