summaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/wrap_objs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/wrap_objs.c b/python/wrap_objs.c
index 793cb66c..74d136b1 100644
--- a/python/wrap_objs.c
+++ b/python/wrap_objs.c
@@ -79,7 +79,7 @@ PyObject *xmlCharPtr_wrap(xmlChar *str) {
}
ret = PyString_FromString((char *) str);
/* deallocation */
- //xmlFree(str);
+ /* xmlFree(str); */
return (ret);
}