summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Modules/pyexpat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c
index 35530cf870..ab0b840fd4 100644
--- a/Modules/pyexpat.c
+++ b/Modules/pyexpat.c
@@ -719,7 +719,7 @@ xmlparse_getattr(xmlparseobject *self, char *name)
if (strcmp(name, "__members__") == 0) {
int i;
PyObject *rc = PyList_New(0);
- for(i = 0; handler_info[i].name!=NULL; i++) {
+ for(i = 0; handler_info[i].name != NULL; i++) {
PyList_Append(rc,
PyString_FromString(handler_info[i].name));
}
@@ -727,6 +727,7 @@ xmlparse_getattr(xmlparseobject *self, char *name)
PyList_Append(rc, PyString_FromString("ErrorLineNumber"));
PyList_Append(rc, PyString_FromString("ErrorColumnNumber"));
PyList_Append(rc, PyString_FromString("ErrorByteIndex"));
+ PyList_Append(rc, PyString_FromString("returns_unicode"));
return rc;
}