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 mmokrejs
Recipients mmokrejs
Date 2015-12-28.10:09:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1451297358.11.0.762402677085.issue25964@psf.upfronthosting.co.za>
In-reply-to
Content
I use pychecker for checking my python code. Seems optparse.py distributed with python-2.7 could be improved as well:

[system path]/optparse.py:1191: Function (__init__) has too many arguments (11)
[system path]/optparse.py:1206: Local variable (version) shadows global defined on line 10 in file my-test-code.py
[system path]/optparse.py:1400: Local variable (stop) not used
[system path]/optparse.py:1668: (file) shadows builtin


Interestingly, my version variable is overridden by one from optparse.py. But more worrisome is the 'file' variable name.
History
Date User Action Args
2015-12-28 10:09:18mmokrejssetrecipients: + mmokrejs
2015-12-28 10:09:18mmokrejssetmessageid: <1451297358.11.0.762402677085.issue25964@psf.upfronthosting.co.za>
2015-12-28 10:09:18mmokrejslinkissue25964 messages
2015-12-28 10:09:17mmokrejscreate