summaryrefslogtreecommitdiffstats
path: root/Lib/difflib.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2005-07-22 21:49:32 (GMT)
committerGeorg Brandl <georg@python.org>2005-07-22 21:49:32 (GMT)
commit7eb4b7d177adae5b5d0aefa6f54170b3967b2473 (patch)
tree9006926c7dc6c5ca522c2fdbf055a40f88fad2b1 /Lib/difflib.py
parent08c02dbb85a8eebe3395658260dec36dd4169381 (diff)
downloadcpython-7eb4b7d177adae5b5d0aefa6f54170b3967b2473.zip
cpython-7eb4b7d177adae5b5d0aefa6f54170b3967b2473.tar.gz
cpython-7eb4b7d177adae5b5d0aefa6f54170b3967b2473.tar.bz2
Fix all wrong instances of "it's".
Diffstat (limited to 'Lib/difflib.py')
-rw-r--r--Lib/difflib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/difflib.py b/Lib/difflib.py
index 590785f..3558f53 100644
--- a/Lib/difflib.py
+++ b/Lib/difflib.py
@@ -1371,7 +1371,7 @@ def _mdiff(fromlines, tolines, context=None, linejunk=None,
text = ' '
# insert marks that won't be noticed by an xml/html escaper.
text = '\0' + format_key + text + '\1'
- # Return line of text, first allow user's line formatter to do it's
+ # Return line of text, first allow user's line formatter to do its
# thing (such as adding the line number) then replace the special
# marks with what the user's change markup.
return (num_lines[side],text)
@@ -1472,7 +1472,7 @@ def _mdiff(fromlines, tolines, context=None, linejunk=None,
"""Yields from/to lines of text with a change indication.
This function is an iterator. It itself pulls lines from the line
- iterator. It's difference from that iterator is that this function
+ iterator. Its difference from that iterator is that this function
always yields a pair of from/to text lines (with the change
indication). If necessary it will collect single from/to lines
until it has a matching pair from/to pair to yield.