Jim

Results 49 comments of Jim

> Can you comment on the discrepancy in MetaJavaClass: constructor vs the get_javaclass() Yes. I reviewed the code and I see I made this mistake. When I changed the default...

I made the changes and the unit tests pass. It wasn't a big change. I apologize for not coding it this way in the first place. I'm a little bit...

That didn't work because I was in a detached head state. I had to create a branch first. ``` git branch fix_20200526 git checkout fix_20200526 git push --set-upstream origin fix_20200526...

I changed them to `_DEFAULT_INCLUDE_PROTECTED` and `_DEFAULT_INCLUDE_PRIVATE`. These are defined in `jnius/jnius_export_class.pxi`. Is there a better place for them?

Unittest added to tests/test_reflect.py. The code looks like this: ``` def test_autoclass_default_params(self): cls_name = 'javax.crypto.Cipher' if MetaJavaClass.get_javaclass(cls_name.replace('.', '/')) is not None: self.skipTest("%s already loaded - has this test run more...

Wait, I just made a minor change to the branch

Slight improvement: ``` def test_autoclass_default_params(self): cls_name = 'javax.crypto.Cipher' jni_name = cls_name.replace('.', '/') if MetaJavaClass.get_javaclass(jni_name) is not None: self.skipTest("%s already loaded - has this test run more than once?" % cls_name)...

I did some testing on this branch with my project and everything looked OK. This branch lacks the `pass_by_reference=False` kwarg we added a while ago, which caused some problems for...

@cmacdonald I will do that

Hi! @nickmcintyre , this a great proposal for p5. I made the [Processing ColorBlindness](https://ixora.io/projects/colorblindness/) library, which is how Processing can support colorblind users. I'm happy to help out as we...