summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/_bootstrap.py
diff options
context:
space:
mode:
authorEric V. Smith <eric@trueblade.com>2011-03-14 15:57:16 (GMT)
committerEric V. Smith <eric@trueblade.com>2011-03-14 15:57:16 (GMT)
commit91f0359ee4fc067e4fb6fcdfaa5e8258333e68a9 (patch)
treeb509c342e831d81103f5509c842323c40b3a4f14 /Lib/importlib/_bootstrap.py
parent4169826a00bc786185cfce9371a3ba15157bf928 (diff)
downloadcpython-91f0359ee4fc067e4fb6fcdfaa5e8258333e68a9.zip
cpython-91f0359ee4fc067e4fb6fcdfaa5e8258333e68a9.tar.gz
cpython-91f0359ee4fc067e4fb6fcdfaa5e8258333e68a9.tar.bz2
Skip test if zlib not present. Closes #11498. Patch by Natalia B. Bidart.
Diffstat (limited to 'Lib/importlib/_bootstrap.py')
-rw-r--r--Lib/importlib/_bootstrap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py
index 7710e8c..87ff01f 100644
--- a/Lib/importlib/_bootstrap.py
+++ b/Lib/importlib/_bootstrap.py
@@ -240,7 +240,7 @@ class BuiltinImporter:
@classmethod
@_requires_builtin
def is_package(cls, fullname):
- """Return None as built-in module are never packages."""
+ """Return None as built-in modules are never packages."""
return False