|
From: <md...@us...> - 2010-12-06 14:43:23
|
Revision: 8818
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8818&view=rev
Author: mdboom
Date: 2010-12-06 14:43:16 +0000 (Mon, 06 Dec 2010)
Log Message:
-----------
Merged revisions 8817 via svnmerge from
https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v1_0_maint
........
r8817 | mdboom | 2010-12-06 08:37:15 -0500 (Mon, 06 Dec 2010) | 2 lines
Remove unicode from docstrings, since it doesn't play well with __builtin__.help().
........
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/projections/polar.py
Property Changed:
----------------
trunk/matplotlib/
Property changes on: trunk/matplotlib
___________________________________________________________________
Modified: svnmerge-integrated
- /trunk/matplotlib:1-7315 /branches/mathtex:1-7263 /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-7253 /branches/v1_0_maint:1-8815
+ /branches/mathtex:1-7263 /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-7253 /branches/v1_0_maint:1-8817 /trunk/matplotlib:1-7315
Modified: trunk/matplotlib/lib/matplotlib/projections/polar.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/projections/polar.py 2010-12-06 13:37:15 UTC (rev 8817)
+++ trunk/matplotlib/lib/matplotlib/projections/polar.py 2010-12-06 14:43:16 UTC (rev 8818)
@@ -88,10 +88,10 @@
that maximum radius rests on the edge of the axes circle.
"""
def __init__(self, scale_transform, limits):
- u"""
+ """
*limits* is the view limit of the data. The only part of
its bounds that is used is ymax (for the radius maximum).
- The theta range is always fixed to (0, 2\u03c0).
+ The theta range is always fixed to (0, 2pi).
"""
Affine2DBase.__init__(self)
self._scale_transform = scale_transform
@@ -141,11 +141,10 @@
inverted.__doc__ = Transform.inverted.__doc__
class ThetaFormatter(Formatter):
- u"""
- Used to format the *theta* tick labels. Converts the
- native unit of radians into degrees and adds a degree symbol
- (\u00b0).
"""
+ Used to format the *theta* tick labels. Converts the native
+ unit of radians into degrees and adds a degree symbol.
+ """
def __call__(self, x, pos=None):
# \u00b0 : degree symbol
if rcParams['text.usetex'] and not rcParams['text.latex.unicode']:
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|