summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorLysandros Nikolaou <lisandrosnik@gmail.com>2020-04-23 15:36:06 (GMT)
committerGitHub <noreply@github.com>2020-04-23 15:36:06 (GMT)
commitebebb6429c224c713e1c63a0b05d4840f52c7415 (patch)
tree49c20c8f9168cba4ed89accc6987ea3fded6c3f0 /Modules
parent9e6a1312c1cd04ab37cddd8f3bb9baa7e9a38bc0 (diff)
downloadcpython-ebebb6429c224c713e1c63a0b05d4840f52c7415.zip
cpython-ebebb6429c224c713e1c63a0b05d4840f52c7415.tar.gz
cpython-ebebb6429c224c713e1c63a0b05d4840f52c7415.tar.bz2
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 'Modules')
-rw-r--r--Modules/_peg_parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_peg_parser.c b/Modules/_peg_parser.c
index 0a84edc..cb5f9aa 100644
--- a/Modules/_peg_parser.c
+++ b/Modules/_peg_parser.c
@@ -1,5 +1,5 @@
#include <Python.h>
-#include <pegen_interface.h>
+#include "pegen_interface.h"
PyObject *
_Py_parse_file(PyObject *self, PyObject *args, PyObject *kwds)