comparison src/if_python3.c @ 32730:078630443def v9.0.1685

patch 9.0.1685: silence Python 3.11 depreciations for gcc Commit: https://github.com/vim/vim/commit/422b9dcbfadcd5c1dfad982f9782563915398430 Author: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Fri Aug 11 22:38:48 2023 +0200 patch 9.0.1685: silence Python 3.11 depreciations for gcc Problem: Python 3.11 interface throws deprecation warnings Solution: ignore those warnings for gcc and clang Python 3.11 deprecation warnings are already silenced for clang using the pragma ``` # pragma clang diagnostic ignored "-Wdeprecated-declarations" ``` However those warnings are also emitted when using gcc. To avoid them for both compilers, change use the __GNUC__ ifdef, which is defined for gcc as well as clang. Additionally, instead of using the "clang diagnostic ignored" pragma, let's make use of 'GCC diagnostic ignored' which is again supported by clang and GCC closes: #12610 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Philip H <47042125+pheiduck@users.noreply.github.com>
author Christian Brabandt <cb@256bit.org>
date Fri, 11 Aug 2023 23:00:03 +0200
parents 50555279168b
children bad5868957e4
comparison
equal deleted inserted replaced
32729:aaacab93d76f 32730:078630443def
80 #else 80 #else
81 # define CODEC_ERROR_HANDLER NULL 81 # define CODEC_ERROR_HANDLER NULL
82 #endif 82 #endif
83 83
84 // Suppress Python 3.11 depreciations to see useful warnings 84 // Suppress Python 3.11 depreciations to see useful warnings
85 #if defined(__clang__) && defined(__clang_major__) && __clang_major__ > 11 85 #ifdef __GNUC__
86 # pragma clang diagnostic ignored "-Wdeprecated-declarations" 86 # pragma GCC diagnostic push
87 # pragma GCC diagnostic ignored "-Wdeprecated-declarations"
87 #endif 88 #endif
88 89
89 // Python 3 does not support CObjects, always use Capsules 90 // Python 3 does not support CObjects, always use Capsules
90 #define PY_USE_CAPSULE 91 #define PY_USE_CAPSULE
91 92