[Scipy-svn] r3722 - trunk/scipy/sandbox/timeseries

scipy-svn at scipy.org scipy-svn at scipy.org
Wed Dec 26 14:34:55 EST 2007


Author: mattknox_ca
Date: 2007-12-26 13:34:43 -0600 (Wed, 26 Dec 2007)
New Revision: 3722

Modified:
   trunk/scipy/sandbox/timeseries/plotlib.py
Log:
removed / commented out some print statements

Modified: trunk/scipy/sandbox/timeseries/plotlib.py
===================================================================
--- trunk/scipy/sandbox/timeseries/plotlib.py	2007-12-26 01:50:00 UTC (rev 3721)
+++ trunk/scipy/sandbox/timeseries/plotlib.py	2007-12-26 19:34:43 UTC (rev 3722)
@@ -537,7 +537,6 @@
 
     def _set_default_format(self, vmin, vmax):
         "Returns the default ticks spacing."
-        print "CALLING FINDER",vmin,vmax
         info = self.finder(vmin, vmax, self.freq, True)
         if self.isminor:
             format = numpy.compress(info['min'] & numpy.logical_not(info['maj']), 
@@ -603,8 +602,8 @@
     #......................................................
     def set_ydata(self, series=None):
         """Sets the base time series."""
-        if self._series is not None:
-            print "WARNING ! Base series is being changed."""
+        #if self._series is not None:
+        #    print "WARNING ! Base series is being changed."""
         self._series = series.ravel()
         if isinstance(series, TimeSeries):
             self.xdata = self.series.dates
@@ -696,9 +695,6 @@
     def tsplot(self,*parms,**kwargs):
         """Plots the data parsed in argument.
 This command accepts the same keywords as matplotlib.plot."""
-#        parms = tuple(list(parms) + kwargs.pop('series',None))
-#        print "Parameters: %s - %i" % (parms, len(parms))
-#        print "OPtions: %s - %i" % (kwargs, len(kwargs))
         parms = self._check_plot_params(*parms)
         self.legendlabels.append(kwargs.get('label',None))
         plotted = Subplot.plot(self, *parms,**kwargs)




More information about the Scipy-svn mailing list