diff options
author | Guido van Rossum <guido@python.org> | 1998-04-13 18:11:55 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-04-13 18:11:55 (GMT) |
commit | cef113c5246c753c3b028e1971339839209be305 (patch) | |
tree | 8723c5518edee31cb8039197b519d456c65eb99c /Modules/gdbmmodule.c | |
parent | b19e2a383c7e7b702a50508f42c94642b9047ec3 (diff) | |
download | cpython-cef113c5246c753c3b028e1971339839209be305.zip cpython-cef113c5246c753c3b028e1971339839209be305.tar.gz cpython-cef113c5246c753c3b028e1971339839209be305.tar.bz2 |
Don't allow unescaped newlines in doc strings.
Diffstat (limited to 'Modules/gdbmmodule.c')
-rw-r--r-- | Modules/gdbmmodule.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Modules/gdbmmodule.c b/Modules/gdbmmodule.c index 88798b4..d916c33 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) |