-
-
Notifications
You must be signed in to change notification settings - Fork 32.7k
gh-137058: use __STDC_VERSION__ >= 202311L instead of __STDC_VERSION__ > 201710L #137127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gh-137058: use __STDC_VERSION__ >= 202311L instead of __STDC_VERSION__ > 201710L #137127
Conversation
Most changes to Python require a NEWS entry. Add one using the blurb_it web app or the blurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
@hugovk Your pick on whether you want this to be backported. It's not really an issue but it helps reducing the diff between 3.14 and 3.15. |
IMO it's worth it to backport the change, but it can wait for Python 3.14.1. |
Thanks @Abdoulrasheed for the PR, and @picnixz for merging it 🌮🎉.. I'm working now to backport this PR to: 3.14. |
Sorry, @Abdoulrasheed and @picnixz, I could not cleanly backport this to
|
I created #137409 to update |
Reminder about backporting. @Abdoulrasheed @picnixz |
…hon#137127) Use `__STDC_VERSION__ >= 202311L` instead of `__STDC_VERSION__ > 201710L`.
Updates the preprocessor check in
pyport.h
to use C23__STDC_VERSION__
value (202311L)Issue: pyport.h: use STDC_VERSION >= 202311L instead of STDC_VERSION > 201710L
pyport.h
: use__STDC_VERSION__ >= 202311L
instead of__STDC_VERSION__ > 201710L
#137058