From: Guido van Rossum Date: Thu, 3 Sep 1992 20:44:36 +0000 (+0000) Subject: Remove outdated warning in comments. X-Git-Tag: v0.9.8~159 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ba3690cd091f7f045f8cfdff9dcec708f0058559;p=thirdparty%2FPython%2Fcpython.git Remove outdated warning in comments. --- diff --git a/Objects/listobject.c b/Objects/listobject.c index c03253228469..ba44c3d9cc19 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;