From: Guido van Rossum Date: Mon, 13 Apr 1998 18:11:55 +0000 (+0000) Subject: Don't allow unescaped newlines in doc strings. X-Git-Tag: v1.5.1~17 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cef113c5246c753c3b028e1971339839209be305;p=thirdparty%2FPython%2Fcpython.git Don't allow unescaped newlines in doc strings. --- diff --git a/Modules/gdbmmodule.c b/Modules/gdbmmodule.c index 88798b425b0f..d916c33366ed 100644 --- a/Modules/gdbmmodule.c +++ b/Modules/gdbmmodule.c @@ -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)