From: Christian Heimes Date: Tue, 20 Aug 2013 20:09:41 +0000 (+0200) Subject: Fix rev85282, add missing import of subprocess module X-Git-Tag: v3.4.0a2~173 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0688897f056283d497b3e19a7a9806bcdd583494;p=thirdparty%2FPython%2Fcpython.git Fix rev85282, add missing import of subprocess module --- diff --git a/Lib/test/test_poll.py b/Lib/test/test_poll.py index 677178809cb0..a1e5c3dbf875 100644 --- a/Lib/test/test_poll.py +++ b/Lib/test/test_poll.py @@ -1,6 +1,7 @@ # Test case for the os.poll() function import os +import subprocess import random import select import _testcapi