瀏覽代碼

wxGUI: out-dated comments removed (cosmetics) [merge from devbr6, r31843]

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@31844 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 17 年之前
父節點
當前提交
d0eef7d129
共有 1 個文件被更改,包括 0 次插入2 次删除
  1. 0 2
      gui/wxpython/gui_modules/gcmd.py

+ 0 - 2
gui/wxpython/gui_modules/gcmd.py

@@ -549,7 +549,6 @@ class CommandThread(Thread):
         if self.stdout:
         if self.stdout:
             # make module stdout/stderr non-blocking
             # make module stdout/stderr non-blocking
             out_fileno = self.module.stdout.fileno()
             out_fileno = self.module.stdout.fileno()
-            # FIXME (MS Windows)
 	    if not subprocess.mswindows:
 	    if not subprocess.mswindows:
                 flags = fcntl.fcntl(out_fileno, fcntl.F_GETFL)
                 flags = fcntl.fcntl(out_fileno, fcntl.F_GETFL)
                 fcntl.fcntl(out_fileno, fcntl.F_SETFL, flags| os.O_NONBLOCK)
                 fcntl.fcntl(out_fileno, fcntl.F_SETFL, flags| os.O_NONBLOCK)
@@ -557,7 +556,6 @@ class CommandThread(Thread):
         if self.stderr:
         if self.stderr:
             # make module stdout/stderr non-blocking
             # make module stdout/stderr non-blocking
             out_fileno = self.module.stderr.fileno()
             out_fileno = self.module.stderr.fileno()
-            # FIXME (MS Windows)
 	    if not subprocess.mswindows:
 	    if not subprocess.mswindows:
                 flags = fcntl.fcntl(out_fileno, fcntl.F_GETFL)
                 flags = fcntl.fcntl(out_fileno, fcntl.F_GETFL)
                 fcntl.fcntl(out_fileno, fcntl.F_SETFL, flags| os.O_NONBLOCK)
                 fcntl.fcntl(out_fileno, fcntl.F_SETFL, flags| os.O_NONBLOCK)