From: Mark Dickinson Date: Sat, 28 Feb 2009 15:54:47 +0000 (+0000) Subject: Merged revisions 70063 via svnmerge from X-Git-Tag: 3.0~350 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b9566deecbb33f56757de8a4af1696cf2eb3795c;p=thirdparty%2FPython%2Fcpython.git Merged revisions 70063 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r70063 | mark.dickinson | 2009-02-28 15:53:24 +0000 (Sat, 28 Feb 2009) | 9 lines Merged revisions 70062 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70062 | mark.dickinson | 2009-02-28 15:50:40 +0000 (Sat, 28 Feb 2009) | 2 lines Issue #5393: typo in cmath.cos and cmath.cosh docstring ........ ................ --- diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c index 67df5c339bc3..56e6bad244be 100644 --- a/Modules/cmathmodule.c +++ b/Modules/cmathmodule.c @@ -368,7 +368,7 @@ c_cos(Py_complex z) PyDoc_STRVAR(c_cos_doc, "cos(x)\n" -"n" +"\n" "Return the cosine of x."); @@ -427,7 +427,7 @@ c_cosh(Py_complex z) PyDoc_STRVAR(c_cosh_doc, "cosh(x)\n" -"n" +"\n" "Return the hyperbolic cosine of x.");