[GRASS-SVN] r31843 - grass/branches/develbranch_6/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Jun 25 14:02:14 EDT 2008


Author: martinl
Date: 2008-06-25 14:02:14 -0400 (Wed, 25 Jun 2008)
New Revision: 31843

Modified:
   grass/branches/develbranch_6/gui/wxpython/gui_modules/gcmd.py
Log:
wxGUI: out-dated comments removed (cosmetics)

Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/gcmd.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/gcmd.py	2008-06-24 13:35:21 UTC (rev 31842)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/gcmd.py	2008-06-25 18:02:14 UTC (rev 31843)
@@ -549,7 +549,6 @@
         if self.stdout:
             # make module stdout/stderr non-blocking
             out_fileno = self.module.stdout.fileno()
-            # FIXME (MS Windows)
 	    if not subprocess.mswindows:
                 flags = fcntl.fcntl(out_fileno, fcntl.F_GETFL)
                 fcntl.fcntl(out_fileno, fcntl.F_SETFL, flags| os.O_NONBLOCK)
@@ -557,7 +556,6 @@
         if self.stderr:
             # make module stdout/stderr non-blocking
             out_fileno = self.module.stderr.fileno()
-            # FIXME (MS Windows)
 	    if not subprocess.mswindows:
                 flags = fcntl.fcntl(out_fileno, fcntl.F_GETFL)
                 fcntl.fcntl(out_fileno, fcntl.F_SETFL, flags| os.O_NONBLOCK)



More information about the grass-commit mailing list