summaryrefslogtreecommitdiff
path: root/Include/pyerrors.h
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-05-04 11:48:05 -0400
committerGitHub <noreply@github.com>2019-05-04 11:48:05 -0400
commitc664b342a47e4b4650706d07e3e40a295e3a4407 (patch)
tree960378ef676a7dc621be03f0b7744ce73a0948c0 /Include/pyerrors.h
parent6b5b013bcc22a27d6231c2796882e44ddb42be67 (diff)
downloadcpython-git-c664b342a47e4b4650706d07e3e40a295e3a4407.tar.gz
bpo-36475: Make PyThread_exit_thread with _Py_NO_RETURN (GH-13068)
Diffstat (limited to 'Include/pyerrors.h')
-rw-r--r--Include/pyerrors.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/Include/pyerrors.h b/Include/pyerrors.h
index 5c6751868d..94af3cb342 100644
--- a/Include/pyerrors.h
+++ b/Include/pyerrors.h
@@ -21,17 +21,6 @@ PyAPI_FUNC(void) PyErr_GetExcInfo(PyObject **, PyObject **, PyObject **);
PyAPI_FUNC(void) PyErr_SetExcInfo(PyObject *, PyObject *, PyObject *);
#endif
-#if defined(__clang__) || \
- (defined(__GNUC__) && \
- ((__GNUC__ >= 3) || \
- (__GNUC__ == 2) && (__GNUC_MINOR__ >= 5)))
-# define _Py_NO_RETURN __attribute__((__noreturn__))
-#elif defined(_MSC_VER)
-# define _Py_NO_RETURN __declspec(noreturn)
-#else
-# define _Py_NO_RETURN
-#endif
-
/* Defined in Python/pylifecycle.c */
PyAPI_FUNC(void) _Py_NO_RETURN Py_FatalError(const char *message);