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 vstinner
Recipients BreamoreBoy, georg.brandl, loewis, pgurumur, vstinner
Date 2014-09-30.22:30:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412116205.81.0.319512462871.issue10349@psf.upfronthosting.co.za>
In-reply-to
Content
> g++ (...)
> Modules/python.c:60: error: invalid conversion from 'void*' to 'wchar_t*'*** Error code 1

This line was part of the function char2wchar() which was moved to Python/fileutils.c (and renamed to _Py_char2wchar).

Since "configure --with-cxx_main" only changes the compiler for python.c (and _testembed.c), calls to PyMem_Malloc() in fileutils.c are not more an issue.

In short: the issue has already been fixed since the creation of fileutils.c.

changeset:   65162:39014f0abc32
user:        Victor Stinner <victor.stinner@haypocalc.com>
date:        Thu Oct 07 21:45:39 2010 +0000
files:       Include/Python.h Include/fileutils.h Makefile.pre.in Modules/getpath.c Modules/main.c PCbuild/pythoncore.vcproj Python/fileutils.c Python/im
description:
Create fileutils.c/.h
History
Date User Action Args
2014-09-30 22:30:05vstinnersetrecipients: + vstinner, loewis, georg.brandl, BreamoreBoy, pgurumur
2014-09-30 22:30:05vstinnersetmessageid: <1412116205.81.0.319512462871.issue10349@psf.upfronthosting.co.za>
2014-09-30 22:30:05vstinnerlinkissue10349 messages
2014-09-30 22:30:05vstinnercreate