Bob Drzyzgula <[EMAIL PROTECTED]> writes:

> Eric,
> 
> You mean, like this:
> 
> bob@susie:~ > echo 'print "0x%x" % 0xfffff000' | python
> 0xfffff000

The minimal test case is:
#!/usr/bin/python
import string
print "0x%x" % string.atol("0xfffff000", 0)

Here it fails with:
OverflowError: long int too long to convert

Eric

Reply via email to