summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-08-20 22:09:41 +0200
committerChristian Heimes <christian@cheimes.de>2013-08-20 22:09:41 +0200
commit0688897f056283d497b3e19a7a9806bcdd583494 (patch)
treedc7c8dcc9221e467812c4d69ffb8622d9f04fd80
parent5617df1be669ce90333efd6509afd71801c11497 (diff)
downloadcpython-git-0688897f056283d497b3e19a7a9806bcdd583494.tar.gz
Fix rev85282, add missing import of subprocess module
-rw-r--r--Lib/test/test_poll.py1
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