merge 3.2
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
index d263b5f..6c22901 100644
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -13,11 +13,7 @@
import warnings
import select
import shutil
-try:
- import gc
-except ImportError:
- gc = None
-
+import gc
try:
import resource
@@ -951,7 +947,6 @@
self.fail("Exception raised by preexec_fn did not make it "
"to the parent process.")
- @unittest.skipUnless(gc, "Requires a gc module.")
def test_preexec_gc_module_failure(self):
# This tests the code that disables garbage collection if the child
# process will execute any Python.