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 gcewing
Recipients
Date 2003-10-12.01:23:48
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
In MacPython, the ReceiveNextEvent function in
Carbon.CarbonEvt
has been incorrectly wrapped.

In C, the 2nd argument of ReceiveNextEvent is declared
as an
EventTypeSpec *. This has been wrapped as though it were a
pointer to a single EventTypeSpec, but it's actually a
pointer to
an array of EventTypeSpecs.

The first two arguments of ReceiveNextEvent should be
represented in Python by a single argument containing a
list of EventTypeSpecs.
History
Date User Action Args
2008-01-20 09:56:29adminlinkissue822005 messages
2008-01-20 09:56:29admincreate