diff options
author | Guido van Rossum <guido@python.org> | 1998-04-13 18:11:55 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-04-13 18:11:55 +0000 |
commit | cef113c5246c753c3b028e1971339839209be305 (patch) | |
tree | 8723c5518edee31cb8039197b519d456c65eb99c /Modules/gdbmmodule.c | |
parent | Whoops! Add a missing 'instantiated = 1' to load_inst(); otherwise it (diff) | |
download | cpython-cef113c5246c753c3b028e1971339839209be305.tar.gz cpython-cef113c5246c753c3b028e1971339839209be305.tar.bz2 cpython-cef113c5246c753c3b028e1971339839209be305.zip |
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 88798b425b0..d916c33366e 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) |