Skip to content
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

Itertree #1721

Closed
wants to merge 16 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ The ASDF Standard is at v1.6.0
is removed in an upcoming asdf release will be ``False`` and
asdf will no longer by-default memory map arrays. [#1667]

- Fix bug where a dictionary containing a key ``id`` caused
any contained references to fail to resolve [#1716]

- Deprecate the following in ``asdf.treeutil``.
``get_children``, ``is_container``, the ``json_id`` argument to
callbacks provided to ``walk_and_modify`` [#1719]

3.0.1 (2023-10-30)
------------------

Expand Down
7 changes: 1 addition & 6 deletions asdf/_asdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from . import _display as display
from . import _node_info as node_info
from . import _version as version
from . import constants, generic_io, reference, schema, treeutil, util, versioning, yamlutil
from . import constants, generic_io, reference, schema, util, versioning, yamlutil
from ._block.manager import Manager as BlockManager
from ._helpers import validate_version
from .config import config_context, get_config
Expand Down Expand Up @@ -169,11 +169,6 @@ def __init__(

self._file_format_version = None

# Context of a call to treeutil.walk_and_modify, needed in the AsdfFile
# in case walk_and_modify is re-entered by extension code (via
# custom_tree_to_tagged_tree or tagged_tree_to_custom_tree).
self._tree_modification_context = treeutil._TreeModificationContext()

self._fd = None
self._closed = False
self._external_asdf_by_uri = {}
Expand Down
Loading
Loading