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.

Author pje
Recipients pje, tarek
Date 2010-07-08.13:38:51
SpamBayes Score 1.9567399e-06
Marked as misclassified No
Message-id <1278596334.3.0.531936724428.issue9199@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2010-07-08 13:38:54pjesetrecipients: + pje, tarek
2010-07-08 13:38:54pjesetmessageid: <1278596334.3.0.531936724428.issue9199@psf.upfronthosting.co.za>
2010-07-08 13:38:52pjelinkissue9199 messages
2010-07-08 13:38:51pjecreate