Fix test_tarfile failure when gzip is not available
The module would exist, but be empty if already imported.
This change ensures we have gzip available.
diff --git a/Lib/tarfile.py b/Lib/tarfile.py
index 152b23c..af733de 100644
--- a/Lib/tarfile.py
+++ b/Lib/tarfile.py
@@ -923,7 +923,8 @@
 
         try:
             import gzip
-        except ImportError:
+            gzip.GzipFile
+        except (ImportError, AttributeError):
             raise CompressionError, "gzip module is not available"
 
         pre, ext = os.path.splitext(name)