[issue18979] Use argparse in the uu module

2022-03-13 Thread Irit Katriel
Irit Katriel added the comment: uu is deprecated as per PEP 594, so there won't be further enhancements to it. -- nosy: +iritkatriel resolution: -> wont fix stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue18979] Use argparse in the uu module

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

[issue18979] Use argparse in the uu module

2014-08-07 Thread Mark Lawrence
Mark Lawrence added the comment: @Paul what is your opinion of this patch? -- nosy: +BreamoreBoy, paul.j3 versions: +Python 3.5 -Python 3.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18979

[issue18979] Use argparse in the uu module

2014-08-07 Thread paul j3
paul j3 added the comment: Reading through, but not testing, it looks like a faithful replacement. The usage like will be a bit different. Given optparse: usage='usage: %prog [-d] [-t] [input [output]] automatic argparse: usage='usage: %prog [-d] [-t] [input] [output] There

[issue18979] Use argparse in the uu module

2013-09-08 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Here is a patch which replaces optparse to argparse in the uu module. -- components: Demos and Tools, Library (Lib) files: uu_argparse.patch keywords: patch messages: 197289 nosy: bethard, serhiy.storchaka priority: normal severity: normal stage: