[Python-checkins] r58544 - python/trunk/Doc/library/difflib.rst python/trunk/Doc/library/filecmp.rst

mark.summerfield python-checkins at python.org
Fri Oct 19 14:48:18 CEST 2007


Author: mark.summerfield
Date: Fri Oct 19 14:48:17 2007
New Revision: 58544

Modified:
   python/trunk/Doc/library/difflib.rst
   python/trunk/Doc/library/filecmp.rst
Log:
Added a cross-ref to each other.



Modified: python/trunk/Doc/library/difflib.rst
==============================================================================
--- python/trunk/Doc/library/difflib.rst	(original)
+++ python/trunk/Doc/library/difflib.rst	Fri Oct 19 14:48:17 2007
@@ -12,6 +12,10 @@
 
 .. versionadded:: 2.1
 
+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
+diffs. For comparing directories and files, see also, the :mod:`filecmp` module.
 
 .. class:: SequenceMatcher
 

Modified: python/trunk/Doc/library/filecmp.rst
==============================================================================
--- python/trunk/Doc/library/filecmp.rst	(original)
+++ python/trunk/Doc/library/filecmp.rst	Fri Oct 19 14:48:17 2007
@@ -8,7 +8,8 @@
 
 
 The :mod:`filecmp` module defines functions to compare files and directories,
-with various optional time/correctness trade-offs.
+with various optional time/correctness trade-offs. For comparing files,
+see also the :mod:`difflib` module.
 
 The :mod:`filecmp` module defines the following functions:
 


More information about the Python-checkins mailing list