From 0688897f056283d497b3e19a7a9806bcdd583494 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Tue, 20 Aug 2013 22:09:41 +0200 Subject: [PATCH] Fix rev85282, add missing import of subprocess module --- Lib/test/test_poll.py | 1 + 1 file changed, 1 insertion(+) 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 -- 2.50.1