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 kevinwatters
Recipients kevinwatters, theller, tim.golden
Date 2008-07-09.02:30:48
SpamBayes Score 0.05144999
Marked as misclassified No
Message-id <1215570649.89.0.722937463355.issue3258@psf.upfronthosting.co.za>
In-reply-to
Content
From reading through PEP 3118 once I'm not entirely clear on the role 
stgdict->format is supposed to be taking here, but I did get comtypes to 
compile and run successfully by changing line 910 from

stgdict->format = alloc_format_string("&", itemdict->format);

to

stgdict->format = alloc_format_string("&", itemdict->format ? itemdict-
>format : "P");

(Where "P" is just struct.pack's void pointer format string.)
History
Date User Action Args
2008-07-09 02:30:50kevinwatterssetspambayes_score: 0.05145 -> 0.05144999
recipients: + kevinwatters, theller, tim.golden
2008-07-09 02:30:50kevinwatterssetspambayes_score: 0.05145 -> 0.05145
messageid: <1215570649.89.0.722937463355.issue3258@psf.upfronthosting.co.za>
2008-07-09 02:30:48kevinwatterslinkissue3258 messages
2008-07-09 02:30:48kevinwatterscreate