summaryrefslogtreecommitdiffstats
path: root/Objects/tupleobject.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-11-10 09:23:53 (GMT)
committerGuido van Rossum <guido@python.org>1993-11-10 09:23:53 (GMT)
commita3d78fb268da5cf7cd4d990cf118bfc01650a8d9 (patch)
tree8b72efe5cef9a755ab55dd919f7e0591235b0345 /Objects/tupleobject.c
parentb2e358d433e0ddbfc870d1a6ce12e7917388c2fe (diff)
downloadcpython-a3d78fb268da5cf7cd4d990cf118bfc01650a8d9.zip
cpython-a3d78fb268da5cf7cd4d990cf118bfc01650a8d9.tar.gz
cpython-a3d78fb268da5cf7cd4d990cf118bfc01650a8d9.tar.bz2
* 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/tupleobject.c')
-rw-r--r--Objects/tupleobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c
index 68fed9e..6f122ea 100644
--- a/Objects/tupleobject.c
+++ b/Objects/tupleobject.c
@@ -167,7 +167,7 @@ tupleprint(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;
}
if (op->ob_size == 1)