How to provent JuliaCall from interpreting Julia functions that ends in "_b" as a function that ends with "!" #650
DavidSagan
started this conversation in
General
Replies: 1 comment
-
Sorry no this transformation is hard coded. Currently you need to do something like jl.getproperty(x, jl.Symbol("foo_b")) from JuliaCall to work around this. This will be a lot nicer in v1 but it's a long way off! In the meantime I could add a x._jl_getproperty("foo_b") which would be much clearer. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
If a Julia function ends with a single
!
you can replace it with_b
on the Python side (#285). This conflicts with some functions of mine that do end with_b
. Question: Is it possible to redefine the mapping so that, for example,_B
is replaced with!
instead?Beta Was this translation helpful? Give feedback.
All reactions