Changeset 1358


Ignore:
Timestamp:
04/27/07 10:54:03 (17 years ago)
Author:
mar637
Message:

fixed whitespce in mpl doc references

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/asapplotter.py

    r1317 r1358  
    105105    def text(self, *args, **kwargs):
    106106        self._axes_callback("text", *args, **kwargs)
    107     text. __doc__ = matplotlib.axes.Axes.text.__doc__
     107    text.__doc__ = matplotlib.axes.Axes.text.__doc__
    108108    def arrow(self, *args, **kwargs):
    109109        self._axes_callback("arrow", *args, **kwargs)
    110     arrow. __doc__ = matplotlib.axes.Axes.arrow.__doc__
     110    arrow.__doc__ = matplotlib.axes.Axes.arrow.__doc__
    111111    def axvline(self, *args, **kwargs):
    112112        self._axes_callback("axvline", *args, **kwargs)
    113     axvline. __doc__ = matplotlib.axes.Axes.axvline.__doc__
     113    axvline.__doc__ = matplotlib.axes.Axes.axvline.__doc__
    114114    def axhline(self, *args, **kwargs):
    115115        self._axes_callback("axhline", *args, **kwargs)
    116     axhline. __doc__ = matplotlib.axes.Axes.axhline.__doc__
     116    axhline.__doc__ = matplotlib.axes.Axes.axhline.__doc__
    117117    def axvspan(self, *args, **kwargs):
    118118        self._axes_callback("axvspan", *args, **kwargs)
     
    121121        # This doesn't happen in a test script???
    122122        del self._plotter.axes.patches[-1]
    123     axvspan. __doc__ = matplotlib.axes.Axes.axvspan.__doc__
     123    axvspan.__doc__ = matplotlib.axes.Axes.axvspan.__doc__
    124124
    125125    def axhspan(self, *args, **kwargs):
     
    129129        # This doesn't happen in a test script???
    130130        del self._plotter.axes.patches[-1]
    131     axhspan. __doc__ = matplotlib.axes.Axes.axhspan.__doc__
     131    axhspan.__doc__ = matplotlib.axes.Axes.axhspan.__doc__
    132132
    133133    def _axes_callback(self, axesfunc, *args, **kwargs):
Note: See TracChangeset for help on using the changeset viewer.