RecursionError: maximum recursion depth exceeded in comparison
Opened this issue · 4 comments
Hi All,
I have an android APK that developed by the React Native development environment. I am working on python 3.6.9. I ran the command qark --apk apks/my.apk
. When I execute the command it starts to run but there is an error shows like RecursionError: maximum recursion depth exceeded in comparison
Is there any required python package missing? I am working on the elementary OS.
do you know how to solve recursion error in python 3.8 in the between of the code ??
Seeing this error as well. Has there been any updates?
I've had some luck by increasing python's recursion limit:
os.setrecursionlimit(2000)
But I have not looked to see if there is an opportunity to replace recursion with iteration, or some other non-hack fix. This project seems to be inactive, unfortunately.