diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-01 11:15:17 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-01 11:15:17 (GMT) |
commit | d7be03aafab4b0a9ff9a3a1701220b380028862d (patch) | |
tree | 4d835f99fd491c41552ade4925f167c4046159e7 | |
parent | 3182a3e55ffcb56f93d19b2155dfc3d99a44df4b (diff) | |
parent | 89fa86b0355a2dcfc8bbb5ebc6dfa1092dd82d19 (diff) | |
download | cpython-d7be03aafab4b0a9ff9a3a1701220b380028862d.zip cpython-d7be03aafab4b0a9ff9a3a1701220b380028862d.tar.gz cpython-d7be03aafab4b0a9ff9a3a1701220b380028862d.tar.bz2 |
Issue #1783: Remove declarations of nonexistent private variables.
-rw-r--r-- | Include/sysmodule.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Include/sysmodule.h b/Include/sysmodule.h index 010e6e0..0cabf6f 100644 --- a/Include/sysmodule.h +++ b/Include/sysmodule.h @@ -20,10 +20,6 @@ PyAPI_FUNC(void) PySys_WriteStderr(const char *format, ...) PyAPI_FUNC(void) PySys_FormatStdout(const char *format, ...); PyAPI_FUNC(void) PySys_FormatStderr(const char *format, ...); -#ifndef Py_LIMITED_API -PyAPI_DATA(PyObject *) _PySys_TraceFunc, *_PySys_ProfileFunc; -#endif - PyAPI_FUNC(void) PySys_ResetWarnOptions(void); PyAPI_FUNC(void) PySys_AddWarnOption(const wchar_t *); PyAPI_FUNC(void) PySys_AddWarnOptionUnicode(PyObject *); |