commit | b5d47efe92fd12cde1de6a473108ef48238a43cc | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Thu Aug 24 02:27:45 2006 +0000 |
committer | Guido van Rossum <guido@python.org> | Thu Aug 24 02:27:45 2006 +0000 |
tree | 2a95d8ef7dc1b32b5b7140eed1ad563c08f36343 | |
parent | 93a669260dcade6c046a5b056c0b3111f719d7b5 [diff] |
Fix another comparison between None and 0.
diff --git a/Lib/subprocess.py b/Lib/subprocess.py index 0d19129..55e267f 100644 --- a/Lib/subprocess.py +++ b/Lib/subprocess.py
@@ -420,7 +420,8 @@ def _cleanup(): for inst in _active[:]: - if inst.poll(_deadstate=sys.maxint) >= 0: + res = inst.poll(_deadstate=sys.maxint) + if res is not None and res >= 0: try: _active.remove(inst) except ValueError: