diff options
author | Lysandros Nikolaou <lisandrosnik@gmail.com> | 2020-04-23 18:36:06 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-23 16:36:06 +0100 |
commit | ebebb6429c224c713e1c63a0b05d4840f52c7415 (patch) | |
tree | 49c20c8f9168cba4ed89accc6987ea3fded6c3f0 /Python/pythonrun.c | |
parent | 9e6a1312c1cd04ab37cddd8f3bb9baa7e9a38bc0 (diff) | |
download | cpython-git-ebebb6429c224c713e1c63a0b05d4840f52c7415.tar.gz |
bpo-40334: Improve various PEG-Parser related stuff (GH-19669)
The changes in this commit are all related to @vstinner's original review comments of the initial PEP 617 implementation PR.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index e3fd3b2427..3a2fe966c0 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -29,7 +29,7 @@ #include "ast.h" // PyAST_FromNodeObject() #include "marshal.h" // PyMarshal_ReadLongFromFile() -#include <pegen_interface.h> // PyPegen_ASTFrom* +#include "pegen_interface.h" // PyPegen_ASTFrom* #ifdef MS_WINDOWS # include "malloc.h" // alloca() |