[issue34653] PyParser_SimpleParseStringFilename should be deleted

2018-09-14 Thread Eric V. Smith
Eric V. Smith added the comment: I'm not going to backport this to 3.7, just in case. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 3.7 ___ Python tracker

[issue34653] PyParser_SimpleParseStringFilename should be deleted

2018-09-13 Thread miss-islington
miss-islington added the comment: New changeset 53c427e839d3e55d4791dca687a2d47534465a7a by Miss Islington (bot) (Eric V. Smith) in branch 'master': bpo-34653: Removed unused function PyParser_SimpleParseStringFilename. (GH-9260)

[issue34653] PyParser_SimpleParseStringFilename should be deleted

2018-09-13 Thread Eric V. Smith
Change by Eric V. Smith : -- keywords: +patch pull_requests: +8691 stage: -> patch review ___ Python tracker ___ ___

[issue34653] PyParser_SimpleParseStringFilename should be deleted

2018-09-12 Thread Eric V. Smith
New submission from Eric V. Smith : There are 6 PyParser_SimpleParse* functions in pythonrun.c. 5 of them are documented in c-api/veryhigh.rst and appear in pythonrun.h. But PyParser_SimpleParseStringFilename is not documented and is not in any .h file. I propose we delete