[Python-checkins] r77230 - python/trunk/Doc/library/cmath.rst

mark.dickinson python-checkins at python.org
Sat Jan 2 15:29:52 CET 2010


Author: mark.dickinson
Date: Sat Jan  2 15:29:52 2010
New Revision: 77230

Log:
Clarify that the rect, phase and polar functions work with radians.

Modified:
   python/trunk/Doc/library/cmath.rst

Modified: python/trunk/Doc/library/cmath.rst
==============================================================================
--- python/trunk/Doc/library/cmath.rst	(original)
+++ python/trunk/Doc/library/cmath.rst	Sat Jan  2 15:29:52 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