From 96433f8e34fda64ce607187bda2eca1c2bde0ec3 Mon Sep 17 00:00:00 2001 From: R David Murray Date: Tue, 30 Jul 2013 15:37:11 -0400 Subject: [PATCH] #18601: fix error made when difflib example was converted to use 'with'. --- Doc/library/difflib.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/difflib.rst b/Doc/library/difflib.rst index 836e240b830..ad1466efaae 100644 --- a/Doc/library/difflib.rst +++ b/Doc/library/difflib.rst @@ -752,7 +752,7 @@ It is also contained in the Python source distribution, as # we're passing these as arguments to the diff function fromdate = time.ctime(os.stat(fromfile).st_mtime) todate = time.ctime(os.stat(tofile).st_mtime) - with open(fromlines) as fromf, open(tofile) as tof: + with open(fromfile) as fromf, open(tofile) as tof: fromlines, tolines = list(fromf), list(tof) if options.u: