[GRASS-SVN] r31844 - grass/trunk/gui/wxpython/gui_modules

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


Author: martinl
Date: 2008-06-25 14:04:38 -0400 (Wed, 25 Jun 2008)
New Revision: 31844

Modified:
   grass/trunk/gui/wxpython/gui_modules/gcmd.py
Log:
wxGUI: out-dated comments removed (cosmetics) [merge from devbr6, r31843]

Modified: grass/trunk/gui/wxpython/gui_modules/gcmd.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/gcmd.py	2008-06-25 18:02:14 UTC (rev 31843)
+++ grass/trunk/gui/wxpython/gui_modules/gcmd.py	2008-06-25 18:04:38 UTC (rev 31844)
@@ -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