--- /org/python/core/PyReflectedFunction.java Tue Dec 5 23:58:32 2006 +++ PyReflectedFunction.java Thu Jan 18 15:05:10 2007 @@ -13,8 +13,10 @@ public PyObject __doc__ = Py.None; public ReflectedArgs[] argslist; public int nargs; + static PyType type = PyType.fromClass(PyBuiltinFunction.class); public PyReflectedFunction(String name) { + super(type); __name__ = name; argslist = new ReflectedArgs[1]; nargs = 0;