summaryrefslogtreecommitdiff
path: root/Objects/listobject.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-11-10 09:23:53 +0000
committerGuido van Rossum <guido@python.org>1993-11-10 09:23:53 +0000
commitc06ed1131e41b796c1399705dcf8bec1224e39cf (patch)
treefbbe2f7e7e50ef40406219d0ee6da1cba5c9a21f /Objects/listobject.c
parent43bbb483f339d2704ab58d6adf1ff0e37387f16a (diff)
downloadcpython-c06ed1131e41b796c1399705dcf8bec1224e39cf.tar.gz
* posixmodule.c: added set{uid,gid}.
* {tuple,list,mapping,array}object.c: call printobject with 0 for flags * compile.c (parsestr): use quote instead of '\'' at one crucial point * arraymodule.c (array_getattr): Added __members__ attribute
Diffstat (limited to 'Objects/listobject.c')
-rw-r--r--Objects/listobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/listobject.c b/Objects/listobject.c
index 22eab71fde..76d2a0e913 100644
--- a/Objects/listobject.c
+++ b/Objects/listobject.c
@@ -200,7 +200,7 @@ list_print(op, fp, flags)
for (i = 0; i < op->ob_size; i++) {
if (i > 0)
fprintf(fp, ", ");
- if (printobject(op->ob_item[i], fp, flags) != 0)
+ if (printobject(op->ob_item[i], fp, 0) != 0)
return -1;
}
fprintf(fp, "]");