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.

作者 nlopes
收信人 Neil Muller, effbot, jerith, nlopes
日期 2009-06-21.17:24:35
SpamBayes Score 3.2858009e-06
Marked as misclassified
Message-id <1245605077.71.0.849516209379.issue6266@psf.upfronthosting.co.za>
In-reply-to
内容
I got pure gibberish output, but I know why. It was a compilation gone
wrong.

To get the output as ElementTree, I think instead of 

parcel = Py_BuildValue("sN", (prefix) ? prefix : "", makestring(uri));

it should be

parcel = Py_BuildValue("sN", (prefix) ? prefix : "",
PyUnicode_AsUnicode(makestring(uri), strlen(uri)));

Else it will not be the expected result.

Or am I overseeing something?
历史
日期 用户 动作 参数
2009-06-21 17:24:37nlopes修改recipients: + nlopes, effbot, Neil Muller, jerith
2009-06-21 17:24:37nlopes修改messageid: <1245605077.71.0.849516209379.issue6266@psf.upfronthosting.co.za>
2009-06-21 17:24:35nlopes链接issue6266 messages
2009-06-21 17:24:35nlopes创建