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 vstinner
Recipients eric.smith, ethan.furman, gvanrossum, mark.dickinson, pitrou, rhettinger, serhiy.storchaka, skrah, vstinner
Date 2013-12-16.15:46:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1387208819.06.0.0916333562077.issue19995@psf.upfronthosting.co.za>
In-reply-to
Content
$ python
Python 2.7.5 (default, Nov 12 2013, 16:18:42) 
>>> import numpy
>>> hex(numpy.uint16(257))
'0x101'
>>> "%x" % numpy.uint16(257)
'101'
>>> x=numpy.uint16(257)
>>> x.__int__()
257
>>> x.__index__()
257
History
Date User Action Args
2013-12-16 15:46:59vstinnersetrecipients: + vstinner, gvanrossum, rhettinger, mark.dickinson, pitrou, eric.smith, skrah, ethan.furman, serhiy.storchaka
2013-12-16 15:46:59vstinnersetmessageid: <1387208819.06.0.0916333562077.issue19995@psf.upfronthosting.co.za>
2013-12-16 15:46:59vstinnerlinkissue19995 messages
2013-12-16 15:46:58vstinnercreate