summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-10-14 02:52:31 (GMT)
committerGuido van Rossum <guido@python.org>1998-10-14 02:52:31 (GMT)
commitfc6aba5008caede94ad65a9cf387b3ba971d5379 (patch)
treee9d0776ea01c242decc212bffc388b02a2db78d7 /Modules
parent35f7542e83edc25c99391359d5bf54ed7fe37b6e (diff)
downloadcpython-fc6aba5008caede94ad65a9cf387b3ba971d5379.zip
cpython-fc6aba5008caede94ad65a9cf387b3ba971d5379.tar.gz
cpython-fc6aba5008caede94ad65a9cf387b3ba971d5379.tar.bz2
ACK! There was still an unescaped newline in a docstring.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/arraymodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c
index 5f44107..99481ec 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.";