[issue3194] Demo/loop.c passing "char *" instead of "wchar_t *"

2010-12-30 Thread Georg Brandl
Georg Brandl added the comment: Demo/embed has now been removed. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker ___

[issue3194] Demo/loop.c passing "char *" instead of "wchar_t *"

2010-01-30 Thread STINNER Victor
STINNER Victor added the comment: loop demo is still broken in py3k: * try to link to libpython3.0 (wrong python version) * there is still the argv[0] type issue -- nosy: +haypo ___ Python tracker ___

[issue3194] Demo/loop.c passing "char *" instead of "wchar_t *"

2008-06-25 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Martin, you made the changes. Could you look at this, please? -- assignee: -> loewis nosy: +benjamin.peterson, loewis ___ Python tracker <[EMAIL PROTECTED]> _

[issue3194] Demo/loop.c passing "char *" instead of "wchar_t *"

2008-06-24 Thread Rafael Zanella
New submission from Rafael Zanella <[EMAIL PROTECTED]>: The Demo/loop.c passes a char pointer (argv[0]) while Py_SetProgramName() now expects a wchar_t pointer. I've attached a patch, the solution on the patch was borrowed, ok stolen, from Python/frozenmain.c -- files: loop_c.diff keyw