]> granicus.if.org Git - python/commitdiff
Merged revisions 84878 via svnmerge from
authorAntoine Pitrou <solipsis@pitrou.net>
Sat, 18 Sep 2010 18:16:39 +0000 (18:16 +0000)
committerAntoine Pitrou <solipsis@pitrou.net>
Sat, 18 Sep 2010 18:16:39 +0000 (18:16 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84878 | antoine.pitrou | 2010-09-18 19:56:02 +0200 (sam., 18 sept. 2010) | 5 lines

  Issue #9894: Do not hardcode ENOENT in test_subprocess.

  (GNU/Hurd is not dead)
........

Lib/test/test_subprocess.py
Misc/NEWS

index 64fbe2189d8ffd166709d6b205c3ec00b07a9027..a23f9345cfa0906884c0670b45f81302974d91ec 100644 (file)
@@ -535,7 +535,7 @@ class ProcessTestCase(BaseTestCase):
                                  stderr=subprocess.PIPE)
             # Windows raises IOError
             except (IOError, OSError) as err:
-                if err.errno != 2:  # ignore "no such file"
+                if err.errno != errno.ENOENT:  # ignore "no such file"
                     raise
 
     def test_issue8780(self):
index 293228064017d27a5c266b90df460d0e52cbf844..f1fd78e8ba043fd80975adaaeeb2fb8cd246fee9 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -590,6 +590,8 @@ Build
 Tests
 -----
 
+- Issue #9894: Do not hardcode ENOENT in test_subprocess.
+
 - Issue #9315: Added tests for the trace module.  Patch by Eli Bendersky.
 
 - Issue #7564: Skip test_ioctl if another process is attached to /dev/tty.