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 ethan.furman
Recipients Arfrever, eric.smith, ethan.furman, gvanrossum, larry, mark.dickinson, pitrou, r.david.murray, rhettinger, serhiy.storchaka, skrah, terry.reedy, vstinner
Date 2013-12-30.16:51:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1388422282.69.0.468576325413.issue19995@psf.upfronthosting.co.za>
In-reply-to
Content
I can see why we wouldn't want to make this change in a point release, but this is a feature release we're talking about and this seems like buggy behavior:

--> hex(3.14)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'float' object cannot be interpreted as an integer

--> '%x' % 3.14
'3'
History
Date User Action Args
2013-12-30 16:51:22ethan.furmansetrecipients: + ethan.furman, gvanrossum, rhettinger, terry.reedy, mark.dickinson, pitrou, vstinner, larry, eric.smith, Arfrever, r.david.murray, skrah, serhiy.storchaka
2013-12-30 16:51:22ethan.furmansetmessageid: <1388422282.69.0.468576325413.issue19995@psf.upfronthosting.co.za>
2013-12-30 16:51:22ethan.furmanlinkissue19995 messages
2013-12-30 16:51:22ethan.furmancreate