Hello Richard, On Sun, Jul 11, 2004 at 01:57:29PM +0100, Richard Emslie wrote: > I did notice that > def f(): pass > f.__get__() > > crashes the pypy interpreter.
Yuk. The performance_shortcut_call() optimization is buggy: it doesn't check the number of arguments before calling the interp-level implementation. Fixed. (But I still think that the whole gateway.py mess needs simplification...) Thanks, Armin _______________________________________________ [EMAIL PROTECTED] http://codespeak.net/mailman/listinfo/pypy-dev
