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 RoSanford
Recipients RoSanford
Date 2012-03-26.22:22:15
SpamBayes Score 6.5421795e-05
Marked as misclassified No
Message-id <1332800536.64.0.0868580471921.issue14420@psf.upfronthosting.co.za>
In-reply-to
Content
When calling winreg.SetValueEx(key, value_name, reserved, type, value), the value argument does not support the full range of a 32 bit unsigned integer, which the Window's registry API is expecting. For example, passing a value 0x80000000 will result in the following exception:
OverflowError: Python int too large to convert to C long. For consistency with the Window's binding, it should support an unsigned long.
History
Date User Action Args
2012-03-26 22:22:16RoSanfordsetrecipients: + RoSanford
2012-03-26 22:22:16RoSanfordsetmessageid: <1332800536.64.0.0868580471921.issue14420@psf.upfronthosting.co.za>
2012-03-26 22:22:16RoSanfordlinkissue14420 messages
2012-03-26 22:22:15RoSanfordcreate