Revision: 7243
http://jython.svn.sourceforge.net/jython/?rev=7243&view=rev
Author: pjenvey
Date: 2011-03-17 23:02:35 +0000 (Thu, 17 Mar 2011)
Log Message:
-----------
might as well return the covariant type
Modified Paths:
--------------
trunk/jython/src/org/python/core/PyInstance.java
Modified: trunk/jython/src/org/python/core/PyInstance.java
===================================================================
--- trunk/jython/src/org/python/core/PyInstance.java 2011-03-17 22:18:37 UTC (rev 7242)
+++ trunk/jython/src/org/python/core/PyInstance.java 2011-03-17 23:02:35 UTC (rev 7243)
@@ -51,7 +51,7 @@
return new PyInstance(klass, dict);
}
- public PyObject fastGetClass() {
+ public PyClass fastGetClass() {
return instclass;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|