commit | 3c8724fc60163f4f3c3b0d531c84cc7b36783f82 | [log] [tgz] |
---|---|---|
author | Zackery Spytz <zspytz@gmail.com> | Tue May 28 09:16:33 2019 -0600 |
committer | Victor Stinner <vstinner@redhat.com> | Tue May 28 17:16:33 2019 +0200 |
tree | bb195253b921a259f0a6e02ffc80f4eb6ad16738 | |
parent | 17a5588740b3d126d546ad1a13bdac4e028e6d50 [diff] [blame] |
bpo-33407: Implement Py_DEPRECATED() on MSVC (GH-8980)
diff --git a/Include/intrcheck.h b/Include/intrcheck.h index 2e17336..e5bf5a8 100644 --- a/Include/intrcheck.h +++ b/Include/intrcheck.h
@@ -15,7 +15,7 @@ #endif #endif /* Deprecated, please use PyOS_AfterFork_Child() instead */ -PyAPI_FUNC(void) PyOS_AfterFork(void) Py_DEPRECATED(3.7); +Py_DEPRECATED(3.7) PyAPI_FUNC(void) PyOS_AfterFork(void); #ifndef Py_LIMITED_API PyAPI_FUNC(int) _PyOS_IsMainThread(void);