Skip to content

Commit

Permalink
Turn off print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
geographika committed Oct 11, 2018
1 parent 2f380a7 commit bec21e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mapscript/python/tests/cases/thread_test.py
Expand Up @@ -33,7 +33,7 @@

def draw_map(name, save=0):

print("making map in thread %s" % (name))
# print("making map in thread %s" % (name))
mo = mapscript.mapObj(TESTMAPFILE)
im = mo.draw()
if save:
Expand All @@ -42,7 +42,7 @@ def draw_map(name, save=0):

def trigger_exception(name):

print("triggering exception in thread %s" % (name))
# print("triggering exception in thread %s" % (name))
mo = mapscript.mapObj(TESTMAPFILE)
try:
mo.setExtent(1, 50, -1, 51)
Expand Down Expand Up @@ -97,7 +97,7 @@ def testExceptionContainmentMultiThreads(self):

def draw_map_wfs(name, save=0):

print("making map in thread %s" % (name))
# print("making map in thread %s" % (name))
mo = mapscript.mapObj(TESTMAPFILE)

# WFS layer
Expand Down Expand Up @@ -145,7 +145,7 @@ def draw_map_wfs(name, save=0):

def draw_map_wms(name, save=0):

print("making map in thread %s" % (name))
# print("making map in thread %s" % (name))
mo = mapscript.mapObj(TESTMAPFILE)
# WFS layer
lo = mapscript.layerObj()
Expand Down

0 comments on commit bec21e6

Please sign in to comment.