summaryrefslogtreecommitdiff
path: root/Include/pydebug.h
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-02-21 00:33:36 +0100
committerGeorg Brandl <georg@python.org>2012-02-21 00:33:36 +0100
commit298a4092f0c1d5ad095ef73844dbc490dc022420 (patch)
tree596b4e3da08ae38d105873325a507aacec4c3b53 /Include/pydebug.h
parent0d54f65446ba3787860e2b70d3edc8b0a5c7a4e5 (diff)
parent1b4bc18634225641f4d2890e989d807afd145b59 (diff)
downloadcpython-298a4092f0c1d5ad095ef73844dbc490dc022420.tar.gz
Merge 3.2: Issue #13703 plus some related test suite fixes.
Diffstat (limited to 'Include/pydebug.h')
-rw-r--r--Include/pydebug.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/pydebug.h b/Include/pydebug.h
index e23cbdc3ad..97c2f8c425 100644
--- a/Include/pydebug.h
+++ b/Include/pydebug.h
@@ -16,7 +16,6 @@ PyAPI_DATA(int) Py_BytesWarningFlag;
PyAPI_DATA(int) Py_UseClassExceptionsFlag;
PyAPI_DATA(int) Py_FrozenFlag;
PyAPI_DATA(int) Py_IgnoreEnvironmentFlag;
-PyAPI_DATA(int) Py_DivisionWarningFlag;
PyAPI_DATA(int) Py_DontWriteBytecodeFlag;
PyAPI_DATA(int) Py_NoUserSiteDirectory;
PyAPI_DATA(int) Py_UnbufferedStdioFlag;
@@ -27,8 +26,6 @@ PyAPI_DATA(int) Py_HashRandomizationFlag;
PYTHONPATH and PYTHONHOME from the environment */
#define Py_GETENV(s) (Py_IgnoreEnvironmentFlag ? NULL : getenv(s))
-PyAPI_FUNC(void) Py_FatalError(const char *message);
-
#ifdef __cplusplus
}
#endif