diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-02-28 15:53:24 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-02-28 15:53:24 (GMT) |
commit | 1bd2e29d82778ad37f6d038db6d23321abaa8f9b (patch) | |
tree | aee09f45a96209ab929f2f84d12895f78f34d36b /Modules/cmathmodule.c | |
parent | 10c9937b2381f6f5fa6464d95e1612369e8787b8 (diff) | |
download | cpython-1bd2e29d82778ad37f6d038db6d23321abaa8f9b.zip cpython-1bd2e29d82778ad37f6d038db6d23321abaa8f9b.tar.gz cpython-1bd2e29d82778ad37f6d038db6d23321abaa8f9b.tar.bz2 |
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
........
Diffstat (limited to 'Modules/cmathmodule.c')
-rw-r--r-- | Modules/cmathmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c index 67df5c3..56e6bad 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."); |