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 veky
Recipients Wicken, eric.smith, mark.dickinson, serhiy.storchaka, veky
Date 2019-11-01.18:42:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1572633730.95.0.506026804221.issue38657@roundup.psfhosted.org>
In-reply-to
Content
The width doesn't mean "the number of bits", it means "the width of the field". In every other case too:

* when we format negative numbers, width includes the minus sign
* when we format decimal numbers, width includes decimal point (or comma)
* when we format strings with !r, width includes the quotes

So, not only would it break too much code, but it would actually be inconsistent to formatting all other types currently.
History
Date User Action Args
2019-11-01 18:42:10vekysetrecipients: + veky, mark.dickinson, eric.smith, serhiy.storchaka, Wicken
2019-11-01 18:42:10vekysetmessageid: <1572633730.95.0.506026804221.issue38657@roundup.psfhosted.org>
2019-11-01 18:42:10vekylinkissue38657 messages
2019-11-01 18:42:10vekycreate