[issue1109659] distutils argument parsing is bogus

2020-10-22 Thread Éric Araujo

Éric Araujo  added the comment:

Given the current status of distutils (mostly used as a base for setuptools, 
and maybe soon removed from stdlib), I am closing this.

--
resolution:  -> wont fix
stage: needs patch -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1109659] distutils argument parsing is bogus

2014-03-13 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
components: +Distutils -Distutils2
stage:  - needs patch
versions: +Python 2.7, Python 3.3, Python 3.4 -3rd party

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1109659
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1109659] distutils argument parsing is bogus

2010-09-29 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
versions: +3rd party -Python 2.5, Python 2.6, Python 2.7, Python 3.1, Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1109659
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1109659] distutils argument parsing is bogus

2010-08-25 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Being able to write a global option after a command name seems a nice feature 
to me, and the implementation should be straightforward: The base Command class 
already adds some options like help to each subclass, it’s just a matter of 
adding verbose, quiet and dry-run and adapting distribution.

no-user-cfg would have to be special-cased: Giving this option to one command  
would just pass it to the Distribution instance. Supporting per-command 
no-user-cfg would be overly complicated and not really useful.

--
components: +Distutils2 -Distutils
versions: +Python 2.5, Python 2.6, Python 2.7, Python 3.1

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1109659
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1109659] distutils argument parsing is bogus

2010-08-25 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
assignee: tarek - eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1109659
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1109659] distutils argument parsing is bogus

2010-08-08 Thread Terry J. Reedy

Changes by Terry J. Reedy tjre...@udel.edu:


--
versions: +Python 3.2 -Python 2.7, Python 3.1

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1109659
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1109659] distutils argument parsing is bogus

2010-04-08 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

“Global option” could be understood as “option that can be given to any 
command”, i.e. “egg spam -d” == “egg -d spam”. Is it feasible to support such 
and equivalence, too difficult or not desirable?

Regards

--
nosy: +merwok

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1109659
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1109659] distutils argument parsing is bogus

2009-02-02 Thread Tarek Ziadé

Tarek Ziadé ziade.ta...@gmail.com added the comment:

yes, that's the expected behavior

*But* we could add a warning, that says that an option was unused.

--
assignee:  - tarek
priority: normal - low
type:  - feature request
versions: +Python 2.7, Python 3.1

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1109659
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1109659] distutils argument parsing is bogus

2009-02-02 Thread Akira Kitada

Akira Kitada akit...@gmail.com added the comment:

Here's the usage of setup.py

usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
   or: setup.py --help [cmd1 cmd2 ...]
   or: setup.py --help-commands
   or: setup.py cmd --help

and '--dry-run' is a global option.
So it looks like valid behavior for me.

--
nosy: +akitada, tarek

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1109659
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com