We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
info
Calling info (or search or schema_info) on an AsdfFile containing a recursive list will enter an infinite loop that will leak memory.
search
schema_info
AsdfFile
import asdf af = asdf.AsdfFile() af['l'] = [] af['l'].append(af['l']) af.info() # never returns and consumes an ever increasing amount of memory
asdf version: main python version: 3.12 operating system: mac osx
The text was updated successfully, but these errors were encountered:
Converter.to_info
No branches or pull requests
Description of the problem
Calling
info
(orsearch
orschema_info
) on anAsdfFile
containing a recursive list will enter an infinite loop that will leak memory.Example of the problem
System information
asdf version: main
python version: 3.12
operating system: mac osx
The text was updated successfully, but these errors were encountered: