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 ncoghlan
Recipients
Date 2004-09-27.06:10:39
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
The documentation for hex() and oct() in the library
reference currently still says they return unsigned
literals only.

With the progress of int/long unification, they no
longer do this. hex(-1) now returns "-0x1". This is
required so that "eval(hex(-1)) == -1" continues to be
true.
History
Date User Action Args
2007-08-23 14:26:28adminlinkissue1035279 messages
2007-08-23 14:26:28admincreate