8000 bpo-35081: Rename internal headers by vstinner · Pull Request #10275 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-35081: Rename internal headers #10275

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

Merged
merged 2 commits into from
Nov 12, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'master' into rename_internal
  • Loading branch information
vstinner committed Nov 12, 2018
commit fadca69f73bbeafb9dbf873a7454518e8eae9f8f
11 changes: 1 addition & 10 deletions Python/bltinmodule.c
Original file line number Diff line number Diff line change
@@ -1,18 +1,9 @@
/* Built-in functions */

#include "Python.h"
#include "Python-ast.h"
#include "pycore_pystate.h"

#include "node.h"
#include "code.h"

#include "asdl.h"
#include "ast.h"

#include <ctype.h>
#include "ast.h"
#include "pycore_state.h"
#include "pycore_pystate.h"

_Py_IDENTIFIER(__builtins__);
_Py_IDENTIFIER(__dict__);
Expand Down
1 change: 0 additions & 1 deletion 8000 Python/import.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#include "Python.h"

#include "Python-ast.h"
#undef Yield /* undefine macro conflicting with winbase.h */
#include "pycore_pyhash.h"
#include "pycore_pylifecycle.h"
#include "pycore_pymem.h"
Expand Down
1 change: 0 additions & 1 deletion Python/pythonrun.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
#include "Python.h"

#include "Python-ast.h"
#undef Yield /* undefine macro conflicting with winbase.h */
#include "pycore_pystate.h"
#include "grammar.h"
#include "node.h"
Expand Down
5 changes: 0 additions & 5 deletions Python/symtable.c
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
#include "Python.h"
#include "pycore_pystate.h"
#ifdef Yield
#undef Yield /* undefine conflicting macro from winbase.h */
#endif
#include "Python-ast.h"
#include "code.h"
#include "symtable.h"
#include "structmember.h"

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
0