Karl Nelson

Results 397 comments of Karl Nelson

I am not sure that the names are the issue though perhaps they are. The methods from the class are gathered by calling ``getClass()`` then ``getDeclaredMethods()``. f the class returned...

I wasn't focussing on iterators, I was just using the names in your example for clarity. I can give you a few tips on how to debug this sort of...

pelson is correct. As ``None`` is automatically converted to Java ``null`` there is little need specifically convert it most of the time. The exception is cases in which you need...

I believe this is expected behavior given the design of the JVM. JPype loads the JVM and the JVM loads jar files as shared files which are held by the...

I am not aware of any way that pydevd would be able to see Java called code. Perhaps there is some way to hook to the entry point for Java...

I have not tested this myself but I would assume the correct solution is to use a JProxy to implement a SecurityManager and prevent the System.exit(). See https://stackoverflow.com/questions/5549720/how-to-prevent-calls-to-system-exit-from-terminating-the-jvm

Hmm. I will have to test that. It should be possible to proxy a class. One work around would be to just write a class that does the security exception...

It is not possible to Proxy a class. Currently the only way to handle this is to create a java class and load it to override the methods. At some...

This one remains stuck on enhancement #420 which is a long term goal.