https://github.com/python/cpython/commit/7241db11699f74d2e90d04cdaa8ecde2ffcfc7bf commit: 7241db11699f74d2e90d04cdaa8ecde2ffcfc7bf branch: main author: Hugo van Kemenade <[email protected]> committer: hugovk <[email protected]> date: 2026-06-02T14:55:28Z summary:
Silence experimental coroutine deprecation warnings (#150788) Co-authored-by: Zachary Ware <[email protected]> files: M PC/python_uwp.cpp diff --git a/PC/python_uwp.cpp b/PC/python_uwp.cpp index 8cdb8d722cdb9a0..1b44216dc20d1e6 100644 --- a/PC/python_uwp.cpp +++ b/PC/python_uwp.cpp @@ -13,6 +13,7 @@ #if defined(__clang__) #define _SILENCE_CLANG_COROUTINE_MESSAGE #endif +#define _SILENCE_EXPERIMENTAL_COROUTINE_DEPRECATION_WARNINGS #include <appmodel.h> #include <winrt\Windows.ApplicationModel.h> _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
