[Python-checkins] Improve the description of difflib in the documentation (GH-22253) (GH-22260)

Miss Islington (bot) webhook-mailer at python.org
Tue Sep 15 15:45:33 EDT 2020


https://github.com/python/cpython/commit/5fdc1425974c794966da1d91d54b4717d1ceeeff
commit: 5fdc1425974c794966da1d91d54b4717d1ceeeff
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-09-15T12:45:29-07:00
summary:

Improve the description of difflib in the documentation (GH-22253) (GH-22260)

>From "can produce difference information in various formats ..."
to " can produce information about file differences in various formats ..."

Automerge-Triggered-By: @Mariatta
(cherry picked from commit 5531269f698f789d1247123fd82681f7a455f66e)

Co-authored-by: Mandeep <mandeep052 at gmail.com>

files:
M Doc/library/difflib.rst

diff --git a/Doc/library/difflib.rst b/Doc/library/difflib.rst
index 0837809df5902..a8543b38c197e 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.
 
 



More information about the Python-checkins mailing list