Re: ast branch
Neil Schemenauer <[email protected]> Tue, 1 Apr 2003 06:55:00 -0800
| Newsgroups | gmane.comp.python.compiler |
|---|---|
| Message-ID | <[email protected]> |
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