This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eamanu
Recipients eamanu
Date 2019-11-24.00:53:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1574556805.21.0.874814643739.issue38903@roundup.psfhosted.org>
In-reply-to
Content
Hi, 

I can see that on parsetok.c there is the next block:

```
#ifdef PY_PARSER_REQUIRES_FUTURE_KEYWORD
#if 0
static const char with_msg[] =
"%s:%d: Warning: 'with' will become a reserved keyword in Python 2.6\n";

static const char as_msg[] =
"%s:%d: Warning: 'as' will become a reserved keyword in Python 2.6\n";

static void
warn(const char *msg, const char *filename, int lineno)
{
    if (filename == NULL)
        filename = "<string>";
    PySys_WriteStderr(msg, filename, lineno);
}
#endif
#endif
```
I think that the #if 0 block can be remove safely, right?

I don't know if the #ifdef PY_PARSER_REQUIRES_FUTURE_KEYWORD we can remove.
History
Date User Action Args
2019-11-24 00:53:25eamanusetrecipients: + eamanu
2019-11-24 00:53:25eamanusetmessageid: <1574556805.21.0.874814643739.issue38903@roundup.psfhosted.org>
2019-11-24 00:53:25eamanulinkissue38903 messages
2019-11-24 00:53:24eamanucreate