Stefan Richthofer
Stefan Richthofer
> I'm using a Nexus I'm afraid Jython does not support Android as of this writing. For more details on this topic refer directly to the Jython project (maybe open...
Hello Daniel, thank you for your interest in JyNI. However, if your goal is to do data-science beyond some numpy-numerics, Jython+JyNI is probably not sufficient. Already SciPy does not work...
In CPython 2.7 dictobject.c there is a section starting with the comment `/* Dictionary iterator types */`. It defines several PyObject-types for iteration about dicts (i.e. for items, keys, values)....
> If I understand correctly, all the commented out lines define the iterator behaviour on the CPython side, and we would need to replace those lines with wrappers around the...
Regarding ImageJ: It is great to see some interest in the JyNI project. > shipping JyNI with Fiji would probably be much easier than shipping a whole CPython distribution JyNI...
> Do you think that this is likely to happen? If so, I would prefer to wait. That depends on us. I can push such a change to Jython if...
With https://hg.python.org/jython/rev/ddb684156587 I refined things in Jython a bit. - dict iterators for keys, values and items now have distinct classes; this allows us to match them directly with CPython...
These are very good questions and I'll try to answer them. However maybe not all right now. A ``JyObject`` is an extended header over a PyObject. The additional header resides...
Sure. However, I can explain _my_ setup, which might actually not be optimal, so I'm open for improvements! First of all, I am using Eclipse as IDE. Historically this wasn't...
One more thing. You might have noticed that in JyNI-code I use tabs all the way. tabs vs spaces is a historic debate https://www.youtube.com/watch?v=SsoOG6ZeyUI In contradiction to Jython- and CPython...