|
From: Kevin D. <kda...@we...> - 2001-08-08 20:58:36
|
----- Original Message ----- From: "john coppola" <joh...@ya...> To: "Samuele Pedroni" <pe...@in...> Cc: <jyt...@li...> Sent: Wednesday, August 08, 2001 4:46 PM Subject: Re: [Jython-dev] What is a Skeleton? > > I'm confused again, > > > > I think that in the end simply unplugging the python > > class and plugging > > a java class in would be simpler ... > > What happens when one tries to unplug the java class? > Class doesn't work anymore. Also, can't use same code > in cPython because of the java class. Ahh... this is the first part I've seen that is different from what you can do with PyMetaClass/ExtensionClass. So, what you're going for is an object that is completely coded in Python and will run fine in CPython, but can take advantage of methods and attributes stored directly in Java for performance reasons. Something like that may be useful for someone targetting both Python and Jython. For someone working on Jython alone, there are other ways to accomplish the same thing. Kevin |