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 nlopes
Recipients Neil Muller, effbot, jerith, nlopes
Date 2009-06-21.17:24:35
SpamBayes Score 3.2858009e-06
Marked as misclassified No
Message-id <1245605077.71.0.849516209379.issue6266@psf.upfronthosting.co.za>
In-reply-to
Content
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?
History
Date User Action Args
2009-06-21 17:24:37nlopessetrecipients: + nlopes, effbot, Neil Muller, jerith
2009-06-21 17:24:37nlopessetmessageid: <1245605077.71.0.849516209379.issue6266@psf.upfronthosting.co.za>
2009-06-21 17:24:35nlopeslinkissue6266 messages
2009-06-21 17:24:35nlopescreate