[issue39943] Meta: Clean up various issues in C internals

Andy Lester report at bugs.python.org
Tue Apr 14 10:58:40 EDT 2020


Andy Lester <andy at petdance.com> added the comment:

I remember coming across a similar error from GCC about casting from a const double pointer to a single pointer void and it said (I believe) something about having to have each cast having to be valid.  I think it was implying something like that if you have 

const void **p

you have to cast that as

(void *)(const void *)p

I will see if I can find that message and/or I can find out more about this cast problem in the Windows compiler.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue39943>
_______________________________________


More information about the Python-bugs-list mailing list