summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-02-28 15:56:34 +0000
committerMark Dickinson <dickinsm@gmail.com>2009-02-28 15:56:34 +0000
commitb896614cd97c1185d57b98f05134d72f96da3ee1 (patch)
tree52cae617458980b6a0fc66543ba48dc34a142c36
parent4b27e963e740c1676c258ee7ab9a4685bc6f7515 (diff)
downloadcpython-git-b896614cd97c1185d57b98f05134d72f96da3ee1.tar.gz
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 ........
-rw-r--r--Modules/cmathmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c
index 42af08cf47..6022cb6150 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.");