On Tue, Aug 15, 2017 at 05:06:46PM -0300, Eduardo Habkost wrote:
> On Tue, Aug 15, 2017 at 10:56:07AM +0100, Daniel P. Berrange wrote:
> > On Tue, Aug 15, 2017 at 11:47:28AM +0200, Markus Armbruster wrote:
> > > Eduardo Habkost writes:
> > >
> > > > It makes command-line parsing and generation of
On Tue, Aug 15, 2017 at 10:56:07AM +0100, Daniel P. Berrange wrote:
> On Tue, Aug 15, 2017 at 11:47:28AM +0200, Markus Armbruster wrote:
> > Eduardo Habkost writes:
> >
> > > It makes command-line parsing and generation of help text much
> > > simpler.
> >
> > There's really no excuse for parsin
On Tue, Aug 08, 2017 at 05:39:31PM -0300, Eduardo Habkost wrote:
> It makes command-line parsing and generation of help text much
> simpler.
>
> The optparse module is deprecated since Python 2.7, but argparse
> is not available in Python 2.6 (the minimum Python version
> required for building QEM
On Tue, Aug 15, 2017 at 11:47:28AM +0200, Markus Armbruster wrote:
> Eduardo Habkost writes:
>
> > It makes command-line parsing and generation of help text much
> > simpler.
>
> There's really no excuse for parsing command line arguments by hand in
> Python.
>
> > The optparse module is deprec
Eduardo Habkost writes:
> It makes command-line parsing and generation of help text much
> simpler.
There's really no excuse for parsing command line arguments by hand in
Python.
> The optparse module is deprecated since Python 2.7, but argparse
> is not available in Python 2.6 (the minimum Pyt
On Tue, Aug 08, 2017 at 05:39:31PM -0300, Eduardo Habkost wrote:
> It makes command-line parsing and generation of help text much
> simpler.
>
> The optparse module is deprecated since Python 2.7, but argparse
> is not available in Python 2.6 (the minimum Python version
> required for building QEM
It makes command-line parsing and generation of help text much
simpler.
The optparse module is deprecated since Python 2.7, but argparse
is not available in Python 2.6 (the minimum Python version
required for building QEMU).
Signed-off-by: Eduardo Habkost
---
Changes v1 -> v2:
* Use optparse mod