[issue24395] webbrowser.py update to use argparse.py

2019-03-15 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24395] webbrowser.py update to use argparse.py

2015-06-06 Thread Hasan Diwan
New submission from Hasan Diwan: The webbrowser module uses getopt, which needs to be ripped out and replaced with argparse. The attached file does just this. -- components: Library (Lib) files: webbrowser.py messages: 244913 nosy: Hasan Diwan, georg.brandl priority: normal severity:

[issue24395] webbrowser.py update to use argparse.py

2015-06-06 Thread Berker Peksag
Berker Peksag added the comment: Thanks! A few comments: * New features like this can only go into Python 3.6 (the default branch) * The CLI is partially tested (see Lib/test/test_webbrowser.py). You'll need to add additional tests (e.g. add tests for the -t and -h options) * It would be nice

[issue24395] webbrowser.py update to use argparse.py

2015-06-06 Thread Mark Lawrence
Mark Lawrence added the comment: This strikes me as pointless code churn. -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24395 ___