Skip to content
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

bpo-35177, Python-ast.h: Fix compiler warning on Yield #10664

Merged
merged 1 commit into from
Nov 22, 2018
Merged

bpo-35177, Python-ast.h: Fix compiler warning on Yield #10664

merged 1 commit into from
Nov 22, 2018

Conversation

vstinner
Copy link
Member

@vstinner vstinner commented Nov 22, 2018

Partially revert commit 5f2df88:
remove "#undef Yield" from Python-ast.h and move it back to .c files.

https://bugs.python.org/issue35177

Partially revert commit 5f2df88:
remove "#undef Yield" from Python-ast.h and move it back to .c files.
@vstinner
Copy link
Member Author

Fix this warning:

winbase.h(102): warning C4005: 'Yield': macro redefinition                                                         

@vstinner
Copy link
Member Author

I checked on my Windows VM and an AppVeyor that warnings are gone.

@@ -32,6 +32,7 @@

#include "Python.h" /* general Python API */
#include "Python-ast.h" /* mod_ty */
#undef Yield /* undefine macro conflicting with <winbase.h> */
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Aren't most of these redundant now that python-ast.h undefines it?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I made the same remark than you, but... no :-) <winbase.h> and "Python-ast.h" both define Yield. Usually, we don't care of Yield from Python-ast.h, so we undefine it after including Python-ast.h. Sometimes, <winbase.h> is included before "Python-ast.h" and so "Python-ast.h" has to undefine it.

Yield from Python-ast.h is only used once, in ast.c... Maybe Python-ast.h must never define it and ast.c should define it instead? It's a very stupid define...

#define Yield(a0, a1, a2, a3) _Py_Yield(a0, a1, a2, a3)

This PR restores the status quo of Python 3.7, since my previous attempt supposed to remove warnings introduced the "Yield warning".

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@zooba: If you see a smarter solution and/or care of this #undef, please go ahead :-) In the meanwhile, I restored the code as it was previously :-)

@vstinner vstinner merged commit 3bb183d into python:master Nov 22, 2018
@vstinner vstinner deleted the yield branch November 22, 2018 17:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants