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 jschneid
Recipients jschneid
Date 2011-07-14.17:59:40
SpamBayes Score 0.00017968375
Marked as misclassified No
Message-id <1310666381.22.0.322884709649.issue12561@psf.upfronthosting.co.za>
In-reply-to
Content
In Modules/getpath.c, the following line (#138) causes problems with some compilers (HP/UX 11, in particular - there could be others):

static wchar_t *lib_python = L"lib/python" VERSION;

Similarly, line #644:

        module_search_path = L"" PYTHONPATH;

The default HP/UX compiler fails to compile this file with the error "Cannot concatenate character string literal and wide string literal".  The attached patch converts these two string literals to wide string literals that the HP/UX compiler can understand.

Very limited testing indicates that the patch is benign (it does not affect the build on Linux running on x86_64).
History
Date User Action Args
2011-07-14 17:59:41jschneidsetrecipients: + jschneid
2011-07-14 17:59:41jschneidsetmessageid: <1310666381.22.0.322884709649.issue12561@psf.upfronthosting.co.za>
2011-07-14 17:59:40jschneidlinkissue12561 messages
2011-07-14 17:59:40jschneidcreate