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 eric.smith
Recipients barry, eric.smith, python-dev, yselivanov
Date 2015-09-09.23:57:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1441843063.01.0.84694228763.issue24965@psf.upfronthosting.co.za>
In-reply-to
Content
This implements the accepted PEP 498. The only other real change I plan on making is to do dynamic memory allocation when building the expressions that make up a JoinedStr AST node. The code has all of the places to do that already laid out, it's just a matter of hooking it up.

There's one nit where I accept 'f' and 'F', but the PEP just says 'f'. I'm not sure if we should accept the upper case version. I'd think not, but all of the other ones (b, r, and u) do.

I need to do one more scan for memory leaks. I've rearranged some code since the last time I checked for leaks, and that's always a recipe for some sneaking in.

And I need to write some more tests, mostly for syntax errors, but also for a few edge conditions.

Comments welcome.
History
Date User Action Args
2015-09-09 23:57:46eric.smithsetrecipients: + eric.smith, barry, python-dev, yselivanov
2015-09-09 23:57:43eric.smithsetmessageid: <1441843063.01.0.84694228763.issue24965@psf.upfronthosting.co.za>
2015-09-09 23:57:42eric.smithlinkissue24965 messages
2015-09-09 23:57:42eric.smithcreate