L
Letbetter, Jason
Consider the following:
__main__:1: FutureWarning: %u/%o/%x/%X of negative int will return a signed
string in Python 2.4 and up
0xC1F2C703
If I understand the warning correctly then the following would happen after
2.4:
-1041053949
I think the printf format should take precedence. It is obvious that the
programmer wants a hex number displayed.
__main__:1: FutureWarning: %u/%o/%x/%X of negative int will return a signed
string in Python 2.4 and up
0xC1F2C703
If I understand the warning correctly then the following would happen after
2.4:
-1041053949
I think the printf format should take precedence. It is obvious that the
programmer wants a hex number displayed.