--- /org/python/core/PyBuiltinFunction.java Tue Dec 5 23:58:32 2006 +++ PyBuiltinFunction.java Thu Jan 18 14:55:28 2007 @@ -92,9 +92,14 @@ } - protected PyBuiltinFunction() {} + static PyType type = PyType.fromClass(PyBuiltinFunction.class); + + protected PyBuiltinFunction() { + super(type); + } protected PyBuiltinFunction(Info info) { + this(); this.info = info; }