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 ocean-city
Recipients miwa, ocean-city, pitrou
Date 2009-02-15.16:29:14
SpamBayes Score 8.0331e-05
Marked as misclassified No
Message-id <1234715356.39.0.356606960926.issue5273@psf.upfronthosting.co.za>
In-reply-to
Content
I tracked down, and I found this mbcs path is set in Python/import.c(1394) 
find_module.

	if (PyUnicode_Check(v)) {
		v = PyUnicode_AsEncodedString(v, 
		    Py_FileSystemDefaultEncoding, NULL);
		if (v == NULL)
			return NULL;
	}

And this was introduced in r64126 to fix segfault mentioned in
issue1342. I'm not understanding why segfault happened but, I feel this
issue is the part of big problem. (issue3080)
History
Date User Action Args
2009-02-15 16:29:16ocean-citysetrecipients: + ocean-city, pitrou, miwa
2009-02-15 16:29:16ocean-citysetmessageid: <1234715356.39.0.356606960926.issue5273@psf.upfronthosting.co.za>
2009-02-15 16:29:14ocean-citylinkissue5273 messages
2009-02-15 16:29:14ocean-citycreate