summaryrefslogtreecommitdiffstats
path: root/Lib/codecs.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/codecs.py')
-rw-r--r--Lib/codecs.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/codecs.py b/Lib/codecs.py
index b3c2f71..ebcec1c 100644
--- a/Lib/codecs.py
+++ b/Lib/codecs.py
@@ -575,6 +575,12 @@ def make_encoding_map(decoding_map):
m[v] = None
return m
+# Tell modulefinder that using codecs probably needs the encodings
+# package
+_false = 0
+if _false:
+ import encodings
+
### Tests
if __name__ == '__main__':