This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Zero
Recipients Zero, docs@python
Date 2013-07-30.19:07:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1375211246.29.0.527231910426.issue18601@psf.upfronthosting.co.za>
In-reply-to
Content
The example at the bottom is good but has a line with a bad variable it is name. It says:

    with open(fromlines) as fromf, open(tofile) as tof:
        fromlines, tolines = list(fromf), list(tof)

In the first line, fromlines does no even exist yet. should say:

    with open(fromlines) as fromf, open(tofile) as tof:
        from, tolines = list(fromf), list(tof)
History
Date User Action Args
2013-07-30 19:07:26Zerosetrecipients: + Zero, docs@python
2013-07-30 19:07:26Zerosetmessageid: <1375211246.29.0.527231910426.issue18601@psf.upfronthosting.co.za>
2013-07-30 19:07:26Zerolinkissue18601 messages
2013-07-30 19:07:25Zerocreate