[docs] [issue20150] API change in string formatting with :s option should be documented in What's New.

Cheryl Sabella report at bugs.python.org
Tue Mar 6 10:13:59 EST 2018


Cheryl Sabella <chekat2 at gmail.com> added the comment:

I believe this has been added to the 3.4 What's New already:

object.__format__() no longer accepts non-empty format strings, it now raises a TypeError instead. Using a non-empty string has been deprecated since Python 3.2. This change has been made to prevent a situation where previously working (but incorrect) code would start failing if an object gained a __format__ method, which means that your code may now raise a TypeError if you are using an 's' format code with objects that do not have a __format__ method that handles it. See bpo-7994 for background

Closing as resolved.

----------
nosy: +csabella
resolution:  -> fixed
stage:  -> resolved
status: open -> closed

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue20150>
_______________________________________


More information about the docs mailing list