Commit 53c427e8 authored by Eric V. Smith's avatar Eric V. Smith Committed by Miss Islington (bot)

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
parent a20b6adb
Remove unused function PyParser_SimpleParseStringFilename.
......@@ -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. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment