From: Mandeep Date: Tue, 15 Sep 2020 19:20:49 +0000 (-0400) Subject: Improve the description of difflib in the documentation (GH-22253) X-Git-Tag: v3.10.0a1~115 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5531269f698f789d1247123fd82681f7a455f66e;p=thirdparty%2FPython%2Fcpython.git Improve the description of difflib in the documentation (GH-22253) From "can produce difference information in various formats ..." to " can produce information about file differences in various formats ..." Automerge-Triggered-By: @Mariatta --- diff --git a/Doc/library/difflib.rst b/Doc/library/difflib.rst index 25e3511d0178..aa08988c8b36 100644 --- a/Doc/library/difflib.rst +++ b/Doc/library/difflib.rst @@ -18,8 +18,8 @@ -------------- This module provides classes and functions for comparing sequences. It -can be used for example, for comparing files, and can produce difference -information in various formats, including HTML and context and unified +can be used for example, for comparing files, and can produce information +about file differences in various formats, including HTML and context and unified diffs. For comparing directories and files, see also, the :mod:`filecmp` module.