Re: [Python-Dev] Parsing f-strings from PEP 498 -- Literal String Interpolation

2016-11-05 Thread Nick Coghlan
On 5 November 2016 at 04:03, Fabio Zadrozny wrote: > On Fri, Nov 4, 2016 at 3:15 PM, Eric V. Smith wrote: >> Using PyParser_ASTFromString is the easiest possible way to do this. Given >> a string, it returns an AST node. What could be simpler? > > > I think that for implementation purposes, given

Re: [Python-Dev] Benchmarks: Comparison between Python 2.7 and Python 3.6 performance

2016-11-05 Thread Antoine Pitrou
Hi Victor, On Fri, 4 Nov 2016 13:53:10 +0100 Victor Stinner wrote: > > Raw results of Python 3.6 compared to Python 2.7: That's interesting, but I would be personally more interested in a performance comparison of 3.5 and 3.6, to know if anything interesting (or worrying :-)) has happened ther