diff --git a/tests/run-tests.py b/tests/run-tests.py --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -63,7 +63,7 @@ processlock = threading.Lock() # subprocess._cleanup can race with any Popen.wait or Popen.poll on py24 # http://bugs.python.org/issue1731717 for details. We shouldn't be producing # zombies but it's pretty harmless even if we do. -if sys.version_info[1] < 5: +if sys.version_info < (2, 5): subprocess._cleanup = lambda: None closefds = os.name == 'posix'