Skip to content

Commit cf8a729

Browse files
committed
Remove stable from the docs
1 parent 1149685 commit cf8a729

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Doc/library/functools.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ The :mod:`functools` module defines the following functions:
663663

664664
.. method:: static_order()
665665

666-
Returns an iterable of nodes in a stable topological order. Using this method
666+
Returns an iterable of nodes in a topological order. Using this method
667667
does not require to call :meth:`TopologicalSorter.prepare` or
668668
:meth:`TopologicalSorter.done`. This method is equivalent to::
669669

Lib/functools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ def _find_cycle(self):
413413
return None
414414

415415
def static_order(self):
416-
"""Returns an iterable of nodes in a stable topological order.
416+
"""Returns an iterable of nodes in a topological order.
417417
418418
Using this method does not require to call "prepare" or "done". If any
419419
cycle is detected, :exc:`CycleError` will be raised.

0 commit comments

Comments
 (0)