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:21:24
SpamBayes Score 3.7749137e-11
Marked as misclassified No
Message-id <1265548885.5.0.722315295513.issue7873@psf.upfronthosting.co.za>
In-reply-to
Content
Looks like I accidentally truncated that traceback.  Here's the full version:

Python 2.7a2+ (trunk:78008M, Feb  5 2010, 23:39:39) 
[GCC 4.2.1 (Apple Inc. build 5646) (dot 1)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> '%0.116x' % 1
'00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001'
[34971 refs]
>>> '%0.117x' % 1
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OverflowError: formatted integer is too long (precision too large?)
[35003 refs]
History
Date User Action Args
2010-02-07 13:21:25mark.dickinsonsetrecipients: + mark.dickinson, eric.smith
2010-02-07 13:21:25mark.dickinsonsetmessageid: <1265548885.5.0.722315295513.issue7873@psf.upfronthosting.co.za>
2010-02-07 13:21:24mark.dickinsonlinkissue7873 messages
2010-02-07 13:21:24mark.dickinsoncreate