summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 43a98c96cd..276c5d1028 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -1295,12 +1295,6 @@ PyParser_SimpleParseStringFlagsFilename(const char *str, const char *filename,
return n;
}
-node *
-PyParser_SimpleParseStringFilename(const char *str, const char *filename, int start)
-{
- return PyParser_SimpleParseStringFlagsFilename(str, filename, start, 0);
-}
-
/* May want to move a more generalized form of this to parsetok.c or
even parser modules. */