-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Long sequences run into RecursionError #11
Comments
Same here |
@bertsky may you advise similar but better package? |
@hadaev8 I'll try. Having tested several libraries available on PyPI (when searching with
Generally, you want more than just correctness:
|
@bertsky |
Since
backtraceFrom
is implemented by recursion (instead of iteration), calling the aligner on "long" sequences (more than 1000 items) results in aRecursionError
with Python defaults. Extending stack depth limit may cause other serious issues.The text was updated successfully, but these errors were encountered: