From: Christian Heimes Date: Wed, 30 Mar 2022 06:35:15 +0000 (+0300) Subject: bpo-46864: Suppress even more ob_shash deprecation warnings (GH-32176) X-Git-Tag: v3.11.0a7~100 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d8f530fe329c6bd9ad6e1a9db9aa32b465c2d67f;p=thirdparty%2FPython%2Fcpython.git bpo-46864: Suppress even more ob_shash deprecation warnings (GH-32176) --- diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index 0754c1ac3bf4..273f6d62b2a2 100644 --- a/Python/pylifecycle.c +++ b/Python/pylifecycle.c @@ -95,11 +95,16 @@ __attribute__(( #endif +/* Suppress deprecation warning for PyBytesObject.ob_shash */ +_Py_COMP_DIAG_PUSH +_Py_COMP_DIAG_IGNORE_DEPR_DECLS _PyRuntimeState _PyRuntime #if defined(__linux__) && (defined(__GNUC__) || defined(__clang__)) __attribute__ ((section (".PyRuntime"))) #endif = _PyRuntimeState_INIT; +_Py_COMP_DIAG_POP + static int runtime_initialized = 0; PyStatus