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 mark.dickinson
Recipients eric.smith, mark.dickinson
Date 2010-02-07.13:20:16
SpamBayes Score 9.584186e-08
Marked as misclassified No
Message-id <1265548818.49.0.927659235166.issue7873@psf.upfronthosting.co.za>
In-reply-to
Content
Currently, in trunk:

>>> '%0.116x' % 1
'00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001'
>>> '%0.117x' % 1
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>

This is intentional, and presumably due to use of a fixed-length buffer somewhere in the formatting internals.  It would be nice (and probably not very hard) to remove this precision restriction.
History
Date User Action Args
2010-02-07 13:20:18mark.dickinsonsetrecipients: + mark.dickinson, eric.smith
2010-02-07 13:20:18mark.dickinsonsetmessageid: <1265548818.49.0.927659235166.issue7873@psf.upfronthosting.co.za>
2010-02-07 13:20:16mark.dickinsonlinkissue7873 messages
2010-02-07 13:20:16mark.dickinsoncreate