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 gvanrossum
Recipients
Date 2001-10-12.14:43:02
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=6380

To rptownsend: the warnings you get seem to come from
assigning function pointers to void*. Could you try the
following change?

3693c3693
< 	{NAME, offsetof(PyTypeObject, SLOT), FUNCTION, WRAPPER}
---
> 	{NAME, offsetof(PyTypeObject, SLOT), (void *)FUNCTION,
WRAPPER}
3695c3695
< 	{NAME, offsetof(etype, SLOT), FUNCTION, WRAPPER}
---
> 	{NAME, offsetof(etype, SLOT), (void *)FUNCTION, WRAPPER}

There's one more line with a warning; can you figure out
where to put a (void*) cast there yourself and let me know?
History
Date User Action Args
2007-08-23 13:56:40adminlinkissue467145 messages
2007-08-23 13:56:40admincreate