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.

classification
Title: "const int" was truncated to "char"
Type: Stage:
Components: Interpreter Core Versions: Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: ocean-city
Priority: normal Keywords: patch

Created on 2006-03-31 03:15 by ocean-city, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
const_int_truncated_to_char.patch ocean-city, 2006-03-31 03:15 change lnotab's type to unsigned char
Messages (1)
msg49881 - (view) Author: Hirokazu Yamamoto (ocean-city) * (Python committer) Date: 2006-03-31 03:15
Hello. I got this warning message in building trunk
with VC6. This happens because "char" == "signed char"
in my environment, and 255 is out of range of signed char.

Probably attached patch will solve problem. Thank you.
History
Date User Action Args
2022-04-11 14:56:16adminsetgithub: 43116
2006-03-31 03:15:07ocean-citycreate