]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.14] Replace ambiguous word "pound" by "hash" in `difflib` docs (GH-139601) (GH...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 7 Oct 2025 18:19:50 +0000 (20:19 +0200)
committerGitHub <noreply@github.com>
Tue, 7 Oct 2025 18:19:50 +0000 (20:19 +0200)
(cherry picked from commit dadbb2662a405a34763db0298025f6af06342849)

Co-authored-by: George Ogden <38294960+George-Ogden@users.noreply.github.com>
Doc/library/difflib.rst

index ec8b575a1ba9996fb6b30a0bf6e0ab5f1180b758..fcd240e7e8283d1b286054f78c1b5684efd66a33 100644 (file)
@@ -231,7 +231,7 @@ diffs. For comparing directories and files, see also, the :mod:`filecmp` module.
    *linejunk*: A function that accepts a single string argument, and returns
    true if the string is junk, or false if not. The default is ``None``. There
    is also a module-level function :func:`IS_LINE_JUNK`, which filters out lines
-   without visible characters, except for at most one pound character (``'#'``)
+   without visible characters, except for at most one hash character (``'#'``)
    -- however the underlying :class:`SequenceMatcher` class does a dynamic
    analysis of which lines are so frequent as to constitute noise, and this
    usually works better than using this function.