Commit b0f7c4fb authored by Georg Brandl's avatar Georg Brandl

Fix check for empty list (vs. None).

parent 491ab052
...@@ -72,7 +72,7 @@ class Popen3: ...@@ -72,7 +72,7 @@ class Popen3:
# In case the child hasn't been waited on, check if it's done. # In case the child hasn't been waited on, check if it's done.
self.poll(_deadstate=sys.maxint) self.poll(_deadstate=sys.maxint)
if self.sts < 0: if self.sts < 0:
if _active: if _active is not None:
# Child is still running, keep us alive until we can wait on it. # Child is still running, keep us alive until we can wait on it.
_active.append(self) _active.append(self)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment