From: Kevin B. <kb...@ca...> - 2002-03-08 16:02:24
|
Joshua Fox wrote: > > I am looking for a convenient summary of ways in which Python is > incompatible with the JVM, whether interpreting in Jython or compiling with > jythonc. I'm not entirely sure what you mean. Obviously, if you can run something in Jython it isn't "incompatible with the JVM"... If you mean, "How do CPython and Jython differ", see: http://www.jython.org/docs/differences.html > I have identified a few such from the documentation, including a ban on > Python multiple inheritance, but where can I find a summary? You can do Python multiple inheritance in Jython, you just can't do multiple inheritance of subclasses of Java classes. (For a variety of reasons that I don't completely agree with. :-) / :-( ). Similar behavior exists with CPython extension classes. kb |