Changeset 1358 for trunk/python
- Timestamp:
- 04/27/07 10:54:03 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/asapplotter.py
r1317 r1358 105 105 def text(self, *args, **kwargs): 106 106 self._axes_callback("text", *args, **kwargs) 107 text. 107 text.__doc__ = matplotlib.axes.Axes.text.__doc__ 108 108 def arrow(self, *args, **kwargs): 109 109 self._axes_callback("arrow", *args, **kwargs) 110 arrow. 110 arrow.__doc__ = matplotlib.axes.Axes.arrow.__doc__ 111 111 def axvline(self, *args, **kwargs): 112 112 self._axes_callback("axvline", *args, **kwargs) 113 axvline. 113 axvline.__doc__ = matplotlib.axes.Axes.axvline.__doc__ 114 114 def axhline(self, *args, **kwargs): 115 115 self._axes_callback("axhline", *args, **kwargs) 116 axhline. 116 axhline.__doc__ = matplotlib.axes.Axes.axhline.__doc__ 117 117 def axvspan(self, *args, **kwargs): 118 118 self._axes_callback("axvspan", *args, **kwargs) … … 121 121 # This doesn't happen in a test script??? 122 122 del self._plotter.axes.patches[-1] 123 axvspan. 123 axvspan.__doc__ = matplotlib.axes.Axes.axvspan.__doc__ 124 124 125 125 def axhspan(self, *args, **kwargs): … … 129 129 # This doesn't happen in a test script??? 130 130 del self._plotter.axes.patches[-1] 131 axhspan. 131 axhspan.__doc__ = matplotlib.axes.Axes.axhspan.__doc__ 132 132 133 133 def _axes_callback(self, axesfunc, *args, **kwargs):
Note:
See TracChangeset
for help on using the changeset viewer.