This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Distutils "upload" command does not show up in--help-commands output.
Type: Stage:
Components: Library (Lib) Versions: Python 3.1
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Kozyarchuk, blais, georg.brandl
Priority: normal Keywords:

Created on 2009-03-31 20:01 by blais, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (5)
msg84884 - (view) Author: Martin Blais (blais) * (Python committer) Date: 2009-03-31 20:01
The output of running "python setup.py --help-commands" does not include
the "upload" command.
msg84890 - (view) Author: Maksim Kozyarchuk (Kozyarchuk) Date: 2009-03-31 20:29
adding upload to __init__.py of commands package fixes this

Patch on Appshot.
http://codereview.appspot.com/32087/show
msg84979 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-04-01 04:32
Committed in r70944.
msg84995 - (view) Author: Maksim Kozyarchuk (Kozyarchuk) Date: 2009-04-01 11:38
Thanks georg.  Do you mind adding my name to the contrib file? 
Sent via BlackBerry by AT&T
msg85012 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-04-01 14:02
Done!
History
Date User Action Args
2022-04-11 14:56:47adminsetgithub: 49881
2009-04-01 14:02:38georg.brandlsetmessages: + msg85012
2009-04-01 11:38:08Kozyarchuksetmessages: + msg84995
title: Distutils "upload" command does not show up in --help-commands output. -> Distutils "upload" command does not show up in--help-commands output.
2009-04-01 04:32:59georg.brandlsetstatus: open -> closed

nosy: + georg.brandl
messages: + msg84979

resolution: fixed
2009-03-31 20:29:30Kozyarchuksetnosy: + Kozyarchuk

messages: + msg84890
versions: + Python 3.1, - Python 2.6, Python 2.5, Python 2.4
2009-03-31 20:01:08blaiscreate