[Python-checkins] r67588 - python/branches/py3k/Objects/longobject.c

"Martin v. Löwis" martin at v.loewis.de
Sat Dec 6 00:49:48 CET 2008


> Issue 4497: silence compiler warnings on Windows.
[...]
> -		return get_small_int(ival); \
> +		return get_small_int((int)ival); \

I think these should all be Py_SAFE_DOWNCASTs.

Regards,
Martin


More information about the Python-checkins mailing list