summaryrefslogtreecommitdiffstats
path: root/Objects/listobject.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-09-03 20:44:36 (GMT)
committerGuido van Rossum <guido@python.org>1992-09-03 20:44:36 (GMT)
commitba3690cd091f7f045f8cfdff9dcec708f0058559 (patch)
tree84b3f5bbcfd4c8966fc36dbc391c15f328827ebf /Objects/listobject.c
parent67daef567fe56702d211fba91ae06f9ea756dbb6 (diff)
downloadcpython-ba3690cd091f7f045f8cfdff9dcec708f0058559.zip
cpython-ba3690cd091f7f045f8cfdff9dcec708f0058559.tar.gz
cpython-ba3690cd091f7f045f8cfdff9dcec708f0058559.tar.bz2
Remove outdated warning in comments.
Diffstat (limited to 'Objects/listobject.c')
-rw-r--r--Objects/listobject.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Objects/listobject.c b/Objects/listobject.c
index c032532..ba44c3d 100644
--- a/Objects/listobject.c
+++ b/Objects/listobject.c
@@ -349,9 +349,6 @@ list_repeat(a, n)
return (object *) np;
}
-/* XXX The following function has a bug: don't try assigning a
- XXX list object to a slice of itself (e.g., a[:1] = a). */
-
static int
list_ass_slice(a, ilow, ihigh, v)
listobject *a;