Replies: 1 comment 1 reply
-
I have committed an infinite recursion prevention check to master |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Just upgraded last night from 4.41 to the latest 5.x.
For my project I have something like
With the newish recursive behavior, it exposed not just
MyAPI
but also theMyAPI.app
and then got stuck on a infinite recursion withdb__path.parent().parent()...
. I was able to fix the problem by hacking inprint
statements into the js api util.py. figure out what was happening, and then prefixing the API class's properties with__
. A useful feature request might be something like those having conditional print statements in the js api expose/import process.Otherwise, I am looking forward to figuring out how to exploit the
{basename}.{name}
functionality to clean/tidy my project up.Beta Was this translation helpful? Give feedback.
All reactions