[GRASS-SVN] r49468 - grass/trunk/gui/wxpython/wxplot
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Dec 1 16:03:18 EST 2011
Author: cmbarton
Date: 2011-12-01 13:03:18 -0800 (Thu, 01 Dec 2011)
New Revision: 49468
Modified:
grass/trunk/gui/wxpython/wxplot/base.py
grass/trunk/gui/wxpython/wxplot/histogram.py
grass/trunk/gui/wxpython/wxplot/scatter.py
Log:
remove debugging code
Modified: grass/trunk/gui/wxpython/wxplot/base.py
===================================================================
--- grass/trunk/gui/wxpython/wxplot/base.py 2011-12-01 20:36:17 UTC (rev 49467)
+++ grass/trunk/gui/wxpython/wxplot/base.py 2011-12-01 21:03:18 UTC (rev 49468)
@@ -202,7 +202,6 @@
rdict = {} # initialize a dictionary
for rpair in rasterList:
- print 'rpair = ' + str(rpair)
idx = rasterList.index(rpair)
try:
@@ -240,8 +239,6 @@
b = randint(0, 255)
g = randint(0, 255)
rdict[rpair]['pcolor'] = ((r,g,b,255))
-
- print 'rdict =' + str(rdict)
return rdict
Modified: grass/trunk/gui/wxpython/wxplot/histogram.py
===================================================================
--- grass/trunk/gui/wxpython/wxplot/histogram.py 2011-12-01 20:36:17 UTC (rev 49467)
+++ grass/trunk/gui/wxpython/wxplot/histogram.py 2011-12-01 21:03:18 UTC (rev 49468)
@@ -152,7 +152,6 @@
read = True)
if not ret:
- print 'in stats loop'
return datalist
for line in ret.splitlines():
Modified: grass/trunk/gui/wxpython/wxplot/scatter.py
===================================================================
--- grass/trunk/gui/wxpython/wxplot/scatter.py 2011-12-01 20:36:17 UTC (rev 49467)
+++ grass/trunk/gui/wxpython/wxplot/scatter.py 2011-12-01 21:03:18 UTC (rev 49468)
@@ -151,8 +151,6 @@
if units != '':
self.ylabel += _(': %s') % units
- print 'axis labels = ' + ' x:' + self.xlabel + ' y:' + self.ylabel
-
def CreateDatalist(self, rpair):
"""!Build a list of cell value, frequency pairs for histogram
frequency can be in cell counts, percents, or area
More information about the grass-commit
mailing list