[issue3717] Py_InitModule* is still referenced in docs

2008-10-17 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: Here is a patch that makes Demo/embed compile and run successfully. -- keywords: +needs review, patch nosy: +loewis Added file: http://bugs.python.org/file11816/embed.diff ___ Python tracker <[EMA

[issue3717] Py_InitModule* is still referenced in docs

2008-10-17 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Looks good to me. -- keywords: -needs review nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue3717] Py_InitModule* is still referenced in docs

2008-10-17 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: Committed as r66961. -- keywords: +needs review resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> _

[issue3717] Py_InitModule* is still referenced in docs

2008-08-28 Thread Erick Tryzelaar
New submission from Erick Tryzelaar <[EMAIL PROTECTED]>: The docs still reference Py_InitModule*, which was removed in r64107. Also, Demo/embed/demo.c still use Py_InitModule, and thus doesn't compile. -- assignee: georg.brandl components: Documentation messages: 72111 nosy: erickt, g

[issue3717] Py_InitModule* is still referenced in docs

2008-08-28 Thread Erick Tryzelaar
Erick Tryzelaar <[EMAIL PROTECTED]> added the comment: On Thu, Aug 28, 2008 at 1:48 PM, Erick Tryzelaar <[EMAIL PROTECTED]> wrote: > > New submission from Erick Tryzelaar <[EMAIL PROTECTED]>: > > The docs still reference Py_InitModule*, which was removed in r64107. > Also, Demo/embed/demo.c stil

[issue3717] Py_InitModule* is still referenced in docs

2008-08-29 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: In your patch, it is not correct to declare main as main(int argc, wchar_t **argv) It is simply not the correct signature: the OS only supports "char** argv". You have to perform the conversion yourself. Look for example at Modules/