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 cheryl.sabella
Recipients BreamoreBoy, cheryl.sabella, docs@python, eric.smith, ezio.melotti, py.user, r.david.murray, terry.reedy
Date 2018-02-25.17:05:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1519578308.53.0.467229070634.issue13790@psf.upfronthosting.co.za>
In-reply-to
Content
From the examples in msg220401, issue28385 changed it to print the object type in the message. 

>>> format([], 'd')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unsupported format string passed to list.__format__
>>> format((), 'd')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unsupported format string passed to tuple.__format__


Would the change left on this issue be to create a PR for Terry's documetation patch?

Thanks!
History
Date User Action Args
2018-02-25 17:05:08cheryl.sabellasetrecipients: + cheryl.sabella, terry.reedy, eric.smith, ezio.melotti, r.david.murray, docs@python, py.user, BreamoreBoy
2018-02-25 17:05:08cheryl.sabellasetmessageid: <1519578308.53.0.467229070634.issue13790@psf.upfronthosting.co.za>
2018-02-25 17:05:08cheryl.sabellalinkissue13790 messages
2018-02-25 17:05:08cheryl.sabellacreate