Message89564
| 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:37 | nlopes | set | recipients: + nlopes, effbot, Neil Muller, jerith |
| 2009-06-21 17:24:37 | nlopes | set | messageid: <1245605077.71.0.849516209379.issue6266@psf.upfronthosting.co.za> |
| 2009-06-21 17:24:35 | nlopes | link | issue6266 messages |
| 2009-06-21 17:24:35 | nlopes | create | |