mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Trent Mick: change a few casts for Win64 compatibility.
This commit is contained in:
parent
2c9cb7aff3
commit
ad89bbcd88
2 changed files with 2 additions and 2 deletions
|
@ -283,7 +283,7 @@ set_name(c, v)
|
|||
{
|
||||
if (v == NULL || !PyString_Check(v))
|
||||
return "__name__ must be a string object";
|
||||
if ((long)strlen(PyString_AS_STRING(v)) != PyString_GET_SIZE(v))
|
||||
if (strlen(PyString_AS_STRING(v)) != (size_t)PyString_GET_SIZE(v))
|
||||
return "__name__ must not contain null bytes";
|
||||
set_slot(&c->cl_name, v);
|
||||
return "";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue