Over in PyConLand, there has been talk about trying to set up a
language summit the day before PyCon starts (the second day of
tutorials). The idea is to give the core developers and Python VM
implementers a day to sit around and talk about stuff without having
to eat into the sprints (I am not le
The ``compiler.ast`` module makes parsing Python source-code and AST
manipulation relatively painless and it's straight-forward to implement
a transformer class.
However, I find that the ``compiler.pycodegen`` module imposes a hard
limit on the length of functions since it calculates jump poin
This mailing list is for discussing the design of Python, not its use.
The best place to ask your question is comp.lang.python.
-Brett
On Mon, Oct 13, 2008 at 12:15 PM, Malthe Borch <[EMAIL PROTECTED]> wrote:
> The ``compiler.ast`` module makes parsing Python source-code and AST
> manipulation re