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 july
Recipients july
Date 2010-05-31.17:32:12
SpamBayes Score 0.021342352
Marked as misclassified No
Message-id <1275327135.19.0.0185418659015.issue8861@psf.upfronthosting.co.za>
In-reply-to
Content
wrapper() code in Lib/curses/wrapper.py
has an unnesesary line:

    res = None

This variable is not used anywhere else in wrapper().
Inspecting the history of trunk, we can see that it was used used as a result of applying func(), but later was replaced by another construction.

Patch added.
History
Date User Action Args
2010-05-31 17:32:15julysetrecipients: + july
2010-05-31 17:32:15julysetmessageid: <1275327135.19.0.0185418659015.issue8861@psf.upfronthosting.co.za>
2010-05-31 17:32:13julylinkissue8861 messages
2010-05-31 17:32:12julycreate