diff options
author | Christian Heimes <christian@cheimes.de> | 2013-08-20 20:09:41 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-08-20 20:09:41 (GMT) |
commit | 0688897f056283d497b3e19a7a9806bcdd583494 (patch) | |
tree | dc7c8dcc9221e467812c4d69ffb8622d9f04fd80 /Lib/test/test_poll.py | |
parent | 5617df1be669ce90333efd6509afd71801c11497 (diff) | |
download | cpython-0688897f056283d497b3e19a7a9806bcdd583494.zip cpython-0688897f056283d497b3e19a7a9806bcdd583494.tar.gz cpython-0688897f056283d497b3e19a7a9806bcdd583494.tar.bz2 |
Fix rev85282, add missing import of subprocess module
Diffstat (limited to 'Lib/test/test_poll.py')
-rw-r--r-- | Lib/test/test_poll.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_poll.py b/Lib/test/test_poll.py index 6771788..a1e5c3d 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 |