Karl Nelson

Results 552 comments of Karl Nelson

I made a good push on this one last week. I resolved about 80% of the issues for setting a up a reverse bridge and even managed to get an...

There is a "mostly" working copy of this on the epypj fork of my repo. Unfortunately it is a "shit-ton" of typing to get every module of Python tested. Current...

This still has several pieces missing. We need to remove the bootstrap loader and add a altered copy of asm library before we can make this work. Therefore, I am...

This item is on the roadmap to 0.9. I have a basic prototype which uses the Java asm library to rewrite a Java class into an interface with an extension...

I completed a prototype of it a few months back as a proof of concept, but it has a lot of issues that need to be resolved. In particular, the...

I took a shot at this one over the weekend. The hardest part is how to properly allow the user to call "super" during the construction stage and potentially for...

The current logic is any keyword conflicts should add a trailing underscore. The most obvious being class_. Someone is unlikely to need to use super unless they are replicating logic...

So lets start with the basics. To support Java, we need to the Python class dictionary to do some things that Python doesn't allow. Python does not allow a method...

@enjoybeta with regard to dynamic loading we should likely take this to another thread.

It appears that Jython uses the ``__init__`` rather than super. So my best guess of syntax would be something like the following. ``` def MyImplementation(java.util.ArrayList): # Declare a Java slot...