[Python-checkins] r70062 - python/trunk/Modules/cmathmodule.c
mark.dickinson
python-checkins at python.org
Sat Feb 28 16:50:40 CET 2009
Author: mark.dickinson
Date: Sat Feb 28 16:50:40 2009
New Revision: 70062
Log:
Issue #5393: typo in cmath.cos and cmath.cosh docstring
Modified:
python/trunk/Modules/cmathmodule.c
Modified: python/trunk/Modules/cmathmodule.c
==============================================================================
--- python/trunk/Modules/cmathmodule.c (original)
+++ python/trunk/Modules/cmathmodule.c Sat Feb 28 16:50:40 2009
@@ -368,7 +368,7 @@
PyDoc_STRVAR(c_cos_doc,
"cos(x)\n"
-"n"
+"\n"
"Return the cosine of x.");
@@ -427,7 +427,7 @@
PyDoc_STRVAR(c_cosh_doc,
"cosh(x)\n"
-"n"
+"\n"
"Return the hyperbolic cosine of x.");
More information about the Python-checkins
mailing list