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, Jim.Jewett, jschneid, loewis, vstinner
Date 2014-06-13.16:01:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1402675312.16.0.763481622712.issue12561@psf.upfronthosting.co.za>
In-reply-to
Content
The changeset a7a8ccf69708 (a few months ago) fixed lib_python to not concatenate bytes string and wide character string. I don't see any occurence of char+wchar in the code, so I'm closing the issue.

changeset:   87136:a7a8ccf69708
user:        Victor Stinner <victor.stinner@gmail.com>
date:        Sat Nov 16 00:45:54 2013 +0100
files:       Modules/getpath.c
description:
Don't mix wide character strings and byte strings (L"lib/python" VERSION): use
_Py_char2wchar() to decode lib_python instead.

Some compilers don't support concatenating literals: L"wide" "bytes". Example: IRIX compiler.
History
Date User Action Args
2014-06-13 16:01:52vstinnersetrecipients: + vstinner, loewis, BreamoreBoy, jschneid, Jim.Jewett
2014-06-13 16:01:52vstinnersetmessageid: <1402675312.16.0.763481622712.issue12561@psf.upfronthosting.co.za>
2014-06-13 16:01:52vstinnerlinkissue12561 messages
2014-06-13 16:01:52vstinnercreate