python-javabridge icon indicating copy to clipboard operation
python-javabridge copied to clipboard

handling of java args not consistent

Open behrica opened this issue 3 years ago • 0 comments

Out of the following 2 lines, only the second does the right thing, namely enabling of a certain JVM module.

javabridge.start_vm(args=["--add-modules","jdk.incubator.foreign"])
javabridge.start_vm(args=["--add-modules=jdk.incubator.foreign"])

This is inconsistent, with the JVM behaviour which takes the 2 command line arguments as being the same:

java --add-modules jdk.incubator.foreign
java --add-modules=jdk.incubator.foreign

behrica avatar Nov 01 '22 23:11 behrica