ソースを参照

remove debugging code

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@49468 15284696-431f-4ddb-bdfa-cd5b030d7da7
Michael Barton 13 年 前
コミット
ce1423d1d6

+ 0 - 3
gui/wxpython/wxplot/base.py

@@ -202,7 +202,6 @@ class BasePlotFrame(wx.Frame):
 
 
         rdict = {} # initialize a dictionary
         rdict = {} # initialize a dictionary
         for rpair in rasterList:
         for rpair in rasterList:
-            print 'rpair = ' + str(rpair)
             idx = rasterList.index(rpair)
             idx = rasterList.index(rpair)
             
             
             try:
             try:
@@ -240,8 +239,6 @@ class BasePlotFrame(wx.Frame):
                 b = randint(0, 255)
                 b = randint(0, 255)
                 g = randint(0, 255)
                 g = randint(0, 255)
                 rdict[rpair]['pcolor'] = ((r,g,b,255))
                 rdict[rpair]['pcolor'] = ((r,g,b,255))
-
-        print 'rdict =' + str(rdict)
             
             
         return rdict
         return rdict
 
 

+ 0 - 1
gui/wxpython/wxplot/histogram.py

@@ -152,7 +152,6 @@ class Histogram2Frame(BasePlotFrame):
                              read = True)
                              read = True)
             
             
             if not ret:
             if not ret:
-                print 'in stats loop'
                 return datalist
                 return datalist
             
             
             for line in ret.splitlines():
             for line in ret.splitlines():

+ 0 - 2
gui/wxpython/wxplot/scatter.py

@@ -151,8 +151,6 @@ class ScatterFrame(BasePlotFrame):
         if units != '':
         if units != '':
             self.ylabel += _(': %s') % units
             self.ylabel += _(': %s') % units
             
             
-        print 'axis labels = ' + ' x:' + self.xlabel + ' y:' + self.ylabel
-
     def CreateDatalist(self, rpair):
     def CreateDatalist(self, rpair):
         """!Build a list of cell value, frequency pairs for histogram
         """!Build a list of cell value, frequency pairs for histogram
             frequency can be in cell counts, percents, or area
             frequency can be in cell counts, percents, or area