[issue18538] `python -m dis ` relying on argparse

2013-07-26 Thread Tshepang Lekhonkhobe
Changes by Tshepang Lekhonkhobe : -- nosy: +tshepang ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue18538] `python -m dis ` relying on argparse

2013-07-25 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue18538] `python -m dis ` relying on argparse

2013-07-23 Thread Michele Orrù
Changes by Michele Orrù : -- keywords: +patch Added file: http://bugs.python.org/file31024/issue18538.patch ___ Python tracker ___ ___

[issue18538] `python -m dis ` relying on argparse

2013-07-23 Thread STINNER Victor
STINNER Victor added the comment: Please attach your patch separatly. -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mail

[issue18538] `python -m dis ` relying on argparse

2013-07-23 Thread Michele Orrù
New submission from Michele Orrù: I feel a little bit embarassed for this patch; while reading the stdlib's Lib/dis.py file, I saw that the _test() function parses by itself sys.argv. I tried to clean it up using argparse; diff and "manual tests" attached. -- title: `python -m dis ` -