New submission from Phillip J. Eby <p...@telecommunity.com>:

When showing a server response (--show-response), the upload command crashes 
with the following traceback:

Traceback (most recent call last):
  File "setup.py", line 94, in <module>
    scripts = scripts,
  File "/usr/lib/python2.7/distutils/core.py", line 152, in setup
    dist.run_commands()
  File "/usr/lib/python2.7/distutils/dist.py", line 953, in run_commands
    self.run_command(cmd)
  File "/usr/lib/python2.7/distutils/dist.py", line 972, in run_command
    cmd_obj.run()
  File "/usr/lib/python2.7/distutils/command/upload.py", line 60, in run
    self.upload_file(command, pyversion, filename)
  File "/usr/lib/python2.7/distutils/command/upload.py", line 189, in 
upload_file
    self.announce('-'*75, result.read(), '-'*75)
TypeError: announce() takes at most 3 arguments (4 given)

This is apparently due to the change made in r70889, which replaced a "print" 
statement with a call to self.announce(), but did not change the parameters 
appropriately.  (The announce() method takes a string and a log level, not an 
arbitrary number of string arguments.)

I don't know what versions of Python this is in besides 2.7; it may exist in a 
2.6.x release or 3.x as well, but it is definitely in the 2.7 release.

----------
assignee: tarek
components: Distutils
messages: 109541
nosy: pje, tarek
priority: normal
severity: normal
status: open
title: distutil upload command crashes when displaying server response
versions: Python 2.7

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue9199>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to