Skip to content

Commit 63567ff

Browse files
committed
changelog 2.11
1 parent 0fed331 commit 63567ff

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

package/MDAnalysis/analysis/base.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -487,9 +487,10 @@ def _setup_frames(
487487
:meth:`_compute` for each of the computation groups.
488488
489489
.. versionchanged:: 2.11.0
490-
Add `self.run_state.slicer` attribute to store the slicer for the
491-
whole trajectory being analyzed and `self.run_state.n_frames` for
492-
number of frames being analyzed.
490+
Added :attr:`run_config` and :attr:`run_state` to expose normalized
491+
run settings and runtime state. The slicer and total frame count for
492+
the whole run are stored in :attr:`self.run_state.slicer` and
493+
:attr:`self.run_state.n_frames`.
493494
"""
494495
slicer = self._define_run_frames(trajectory, start, stop, step, frames)
495496
self.run_state.slicer = slicer
@@ -870,9 +871,8 @@ def run(
870871
support parallelizable execution.
871872
872873
.. versionchanged:: 2.11.0
873-
The run parameters with normalized defaults are now stored in
874-
:attr:`run_config` and runtime-generated attributes in
875-
:attr:`run_state`.
874+
Added :attr:`run_config` and :attr:`run_state` to expose normalized
875+
run settings and runtime state.
876876
"""
877877
# default to serial execution
878878
backend = "serial" if backend is None else backend

0 commit comments

Comments
 (0)