Karl Nelson

Results 44 issues of Karl Nelson

I am the lead author of JPype. As part of updating the documentation of JPype, I added PyJnius to the list of alternative codes to JPype. Unfortunately after two hours...

Report an easy to make error with a less confusing message.

This thread holds working notes on my third attempt to get PyPy to run JPype. - Attempted to compile JPype under PyPy3. - All info in thread state is missing...

This is an attempt to solve the OSX issue in which the JVM main thread and the GUI thread must be separate or the GUI will go into a deadlock....

need-info

A common issue that I see in forums is trying to add something to the classpath after the JVM has already be started. As we can't restart the JVM that...

enhancement
documentation

This is a work in progress to link Java exception causes with Python ones. Unfortunately, the cause slot is already used when throwing from Java to Python, so it is...

I took a shot at extending java objects using Python. In order to do so, we would need to construct two classes from within Python. One is an extension Class...

enhancement
on-hold

While working on the JForward code, I ran into this error. ``` import jpype jpype.startJVM() jo = jpype.JClass('java.lang.Character').UnicodeScript.GEORGIAN jo==jo object()==jo jo==object() ``` This produces a SystemError because the conversion pointer...

This is the prototype code for JForword which allows resources to be created prior to starting the JVM. The internal methods are all working, but it requires clean up, hooking...