Index: org/python/core/PyMethod.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/core/PyMethod.java,v retrieving revision 2.15 diff -u -b -B -u -r2.15 PyMethod.java --- org/python/core/PyMethod.java 28 Oct 2001 17:13:43 -0000 2.15 +++ org/python/core/PyMethod.java 30 Apr 2003 08:31:00 -0000 @@ -17,6 +17,8 @@ public PyMethod(PyObject self, PyObject f, PyObject wherefound) { super(__class__); + if (self == Py.None) + self = null; im_func = f; im_self = self; im_class = wherefound;