Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fe511c5

Browse files
tacaswellQuLogic
andauthored
DOC: clarify wording
Co-authored-by: Elliott Sales de Andrade <[email protected]>
1 parent c6b0f25 commit fe511c5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/api/next_api_changes/behavior/22229-TAC.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ can safely be added or removed from the Axes while iterating over their children
88

99
This is a departure from the expected behavior of mutable iterable data types
1010
in Python -- iterating over list while mutating it has surprising consequences
11-
and dictionaries will error if they change size during iteration. In this case
12-
because all of the accessors are filtered views of the same underlying list, it
11+
and dictionaries will error if they change size during iteration.
12+
Because all of the accessors are filtered views of the same underlying list, it
1313
is possible for seemingly unrelated changes, such as removing a Line, to affect
14-
the to affect the iteration over any of the other accessors, we have opted to
14+
the iteration over any of the other accessors. In this case, we have opted to
1515
make a copy of the relevant children before yielding them to the user.
1616

1717
This change is also consistent with our plan to make these accessors immutable

0 commit comments

Comments
 (0)