[Python-checkins] r70065 - in python/branches/release26-maint: Modules/cmathmodule.c

mark.dickinson python-checkins at python.org
Sat Feb 28 16:56:35 CET 2009


Author: mark.dickinson
Date: Sat Feb 28 16:56:34 2009
New Revision: 70065

Log:
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
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Modules/cmathmodule.c

Modified: python/branches/release26-maint/Modules/cmathmodule.c
==============================================================================
--- python/branches/release26-maint/Modules/cmathmodule.c	(original)
+++ python/branches/release26-maint/Modules/cmathmodule.c	Sat Feb 28 16:56:34 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