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 petdance
Recipients benjamin.peterson, methane, petdance, serhiy.storchaka, vstinner
Date 2020-04-14.14:58:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1586876320.99.0.771485470034.issue39943@roundup.psfhosted.org>
In-reply-to
Content
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.
History
Date User Action Args
2020-04-14 14:58:41petdancesetrecipients: + petdance, vstinner, benjamin.peterson, methane, serhiy.storchaka
2020-04-14 14:58:40petdancesetmessageid: <1586876320.99.0.771485470034.issue39943@roundup.psfhosted.org>
2020-04-14 14:58:40petdancelinkissue39943 messages
2020-04-14 14:58:40petdancecreate