]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Docs: replace Harry Potter reference with Monty Python (#118130)
authorClément Robert <cr52@protonmail.com>
Sun, 21 Apr 2024 18:03:46 +0000 (20:03 +0200)
committerGitHub <noreply@github.com>
Sun, 21 Apr 2024 18:03:46 +0000 (19:03 +0100)
Doc/library/doctest.rst

index a643a0e7e313bf551b0d0be75a0011133cddd789..5f7d10a6dce0371f9a79de57672180c424d6b0eb 100644 (file)
@@ -800,18 +800,18 @@ guarantee about output.  For example, when printing a set, Python doesn't
 guarantee that the element is printed in any particular order, so a test like ::
 
    >>> foo()
-   {"Hermione", "Harry"}
+   {"spam", "eggs"}
 
 is vulnerable!  One workaround is to do ::
 
-   >>> foo() == {"Hermione", "Harry"}
+   >>> foo() == {"spam", "eggs"}
    True
 
 instead.  Another is to do ::
 
    >>> d = sorted(foo())
    >>> d
-   ['Harry', 'Hermione']
+   ['eggs', 'spam']
 
 There are others, but you get the idea.