From 53c427e839d3e55d4791dca687a2d47534465a7a Mon Sep 17 00:00:00 2001 From: "Eric V. Smith" Date: Thu, 13 Sep 2018 12:34:55 -0400 Subject: bpo-34653: Removed unused function PyParser_SimpleParseStringFilename. (GH-9260) This function was not in any .h file and was not used by Python, so removing it is safe. https://bugs.python.org/issue34653 --- Python/pythonrun.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'Python/pythonrun.c') 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. */ -- cgit v1.2.1