]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Don't allow unescaped newlines in doc strings.
authorGuido van Rossum <guido@python.org>
Mon, 13 Apr 1998 18:11:55 +0000 (18:11 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 13 Apr 1998 18:11:55 +0000 (18:11 +0000)
Modules/gdbmmodule.c

index 88798b425b0fb64352b73233ad8e109ad5c182f0..d916c33366ed7570e17d430d8830b5410359a78c 100644 (file)
@@ -213,8 +213,7 @@ static PyMappingMethods dbm_as_mapping = {
 
 static char dbm_close__doc__[] = "\
 close() -> None\n\
-Closes the database.
-";
+Closes the database.";
 
 static PyObject *
 dbm_close(dp, args)