commit | ebebb6429c224c713e1c63a0b05d4840f52c7415 | [log] [tgz] |
---|---|---|
author | Lysandros Nikolaou <lisandrosnik@gmail.com> | Thu Apr 23 18:36:06 2020 +0300 |
committer | GitHub <noreply@github.com> | Thu Apr 23 16:36:06 2020 +0100 |
tree | 49c20c8f9168cba4ed89accc6987ea3fded6c3f0 | |
parent | 9e6a1312c1cd04ab37cddd8f3bb9baa7e9a38bc0 [diff] [blame] |
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.
diff --git a/Parser/pegen/peg_api.c b/Parser/pegen/peg_api.c index 7c6903c..c42aa68 100644 --- a/Parser/pegen/peg_api.c +++ b/Parser/pegen/peg_api.c
@@ -1,4 +1,4 @@ -#include <pegen_interface.h> +#include "pegen_interface.h" #include "../tokenizer.h" #include "pegen.h"