Jim

Results 49 comments of Jim

I don't know if this is related, but the 0.18 release of jedi is breaking tab completion in Jupyter. https://github.com/ipython/ipython/issues/12745 I fixed it by downgrading to a previous version: `pip...

FWIW, the Python - Java bridge library [jpype](https://github.com/jpype-project/jpype) also seems to have problems with Swing/AWT on OSX. Something about the threading? I don't understand the reasons fully, as I don't...

Interesting. The [documentation](https://juliainterop.github.io/JavaCall.jl/) seemed to imply it was only tested on versions 7, 8, and 9. I'm happy this library exists and will start using it.

No, the JPype issue has not been fixed. They don't have a Mac to test on, and neither do I. Interprocess communication would be slower, and not worth it because...

You are doing this on Windows, and it looks like you don't have write access to one of the directories the install process is using. This might be an issue...

It looks like the path PyCharm is using points to an environment that does not have pyjnius installed. Either you didn't install it correctly or there is an issue with...

The problem here is this: ``` >>> mymap.put.signatures() [(['java/lang/Object', 'java/lang/Object'], 'java/lang/Object')] ``` When pyjnius is converting the python variables to Java it uses the method signature to decide how to...

@cmacdonald a kwarg could be used to do that but the HashMap object would still be `HashMap()` and not `HashMap()`, which is what @AbdealiJK needs. What if there was a...

In jnius_conversion.pxi there is the function `populate_args` that does the argument conversion. In the above example, this block of code is converting the bytes to a string: ``` elif isinstance(py_arg,...

> I believe yes Interesting. I did some testing and I believe you are correct. So perhaps all we need to do is make the kwarg you suggested?