From: Guido van Rossum Date: Wed, 14 Oct 1998 02:52:31 +0000 (+0000) Subject: ACK! There was still an unescaped newline in a docstring. X-Git-Tag: v1.5.2a2~33 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fc6aba5008caede94ad65a9cf387b3ba971d5379;p=python ACK! There was still an unescaped newline in a docstring. --- diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c index 5f44107587..99481ec8ab 100644 --- a/Modules/arraymodule.c +++ b/Modules/arraymodule.c @@ -1065,7 +1065,7 @@ array_tolist(self, args) } static char tolist_doc [] = -"tolist() -> list +"tolist() -> list\n\ \n\ Convert array to an ordinary list with the same items.";