]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-129892: Doc: Remove unnecessary role directive in graphlib.py (#129896)
authorNikola Savic <76233425+nikolasavic3@users.noreply.github.com>
Sun, 9 Feb 2025 15:22:57 +0000 (16:22 +0100)
committerGitHub <noreply@github.com>
Sun, 9 Feb 2025 15:22:57 +0000 (18:22 +0300)
Change `:exec:ValueError` to `ValueError` in `TopologicalSorter.done()` docstring

Lib/graphlib.py

index 1438a5fc54b9cbfa69287bf9cc6139b7f879345c..82f33fb5cf312c2807c43948254f2e428d067388 100644 (file)
@@ -154,7 +154,7 @@ class TopologicalSorter:
         This method unblocks any successor of each node in *nodes* for being returned
         in the future by a call to "get_ready".
 
-        Raises :exec:`ValueError` if any node in *nodes* has already been marked as
+        Raises ValueError if any node in *nodes* has already been marked as
         processed by a previous call to this method, if a node was not added to the
         graph by using "add" or if called without calling "prepare" previously or if
         node has not yet been returned by "get_ready".