Replies: 1 comment
-
Further investigation indicated that my problem could be related to the initialize/shutdown calls. |
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
-
Hi,
I'm trying to reload changed python file (module hot reloading) but it doesn't work.
My test case:
version()
function that just returns 1.PyModule.Import()
in my C# code and call thatversion()
function. It returns 1 as expected.PyModule.Reload()
.version()
function again but it still returns 1 instead of 2.Am I doing it correctly and is it possible at all?
I found similar discussions (1, 2) but not sure if that is the same case.
Beta Was this translation helpful? Give feedback.
All reactions