[Python-checkins] r77231 - in python/branches/release26-maint: Doc/library/cmath.rst

mark.dickinson python-checkins at python.org
Sat Jan 2 15:31:13 CET 2010


Author: mark.dickinson
Date: Sat Jan  2 15:31:13 2010
New Revision: 77231

Log:
Merged revisions 77230 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r77230 | mark.dickinson | 2010-01-02 14:29:52 +0000 (Sat, 02 Jan 2010) | 1 line
  
  Clarify that the rect, phase and polar functions work with radians.
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Doc/library/cmath.rst

Modified: python/branches/release26-maint/Doc/library/cmath.rst
==============================================================================
--- python/branches/release26-maint/Doc/library/cmath.rst	(original)
+++ python/branches/release26-maint/Doc/library/cmath.rst	Sat Jan  2 15:31:13 2010
@@ -36,8 +36,8 @@
 number.  In polar coordinates, a complex number *z* is defined by the
 modulus *r* and the phase angle *phi*. The modulus *r* is the distance
 from *z* to the origin, while the phase *phi* is the counterclockwise
-angle from the positive x-axis to the line segment that joins the
-origin to *z*.
+angle, measured in radians, from the positive x-axis to the line
+segment that joins the origin to *z*.
 
 The following functions can be used to convert from the native
 rectangular coordinates to polar coordinates and back.


More information about the Python-checkins mailing list