commit | 565798d4930cf3b557ee43505c21a05d926210d3 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Apr 21 22:25:01 1998 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Apr 21 22:25:01 1998 +0000 |
tree | 3596ad599f72bd336e91bf7149244f5145930536 | |
parent | 031a68fe5fcbf9825e44f269ac16d061af13c18a [diff] |
Be less naive about null characters in an object's repr().
diff --git a/Objects/object.c b/Objects/object.c index 1a1ed52..3289aba 100644 --- a/Objects/object.c +++ b/Objects/object.c
@@ -188,8 +188,8 @@ ret = -1; } else { - fprintf(fp, "%s", - PyString_AsString(s)); + ret = PyObject_Print(s, fp, + Py_PRINT_RAW); } Py_XDECREF(s); }