diff options
author | Christian Heimes <christian@cheimes.de> | 2013-08-20 22:09:41 +0200 |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-08-20 22:09:41 +0200 |
commit | 0688897f056283d497b3e19a7a9806bcdd583494 (patch) | |
tree | dc7c8dcc9221e467812c4d69ffb8622d9f04fd80 | |
parent | 5617df1be669ce90333efd6509afd71801c11497 (diff) | |
download | cpython-git-0688897f056283d497b3e19a7a9806bcdd583494.tar.gz |
Fix rev85282, add missing import of subprocess module
-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 677178809c..a1e5c3dbf8 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 |