Don't allow unescaped newlines in doc strings.

This commit is contained in:
Guido van Rossum 1998-04-13 18:11:55 +00:00
parent b19e2a383c
commit cef113c524

View 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)