[Compiler-sig] ast branch

Neil Schemenauer nas@python.ca
Tue, 1 Apr 2003 06:55:00 -0800


Neal Norwitz wrote:
>         * class is not handled

I implemented 'class' at pycon.  It might even work.  Method calls are
broken.  The following code does not work:

    class A:
        def f(self):
            print 'hello'

    A().f()

I haven't dug into what's wrong.

  Neil