We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1bb3cc commit 0eae552Copy full SHA for 0eae552
Lib/importlib/metadata/__init__.py
@@ -890,7 +890,8 @@ def search(self, prepared: Prepared):
890
return itertools.chain(infos, eggs)
891
892
893
-# Translation table for Prepared.normalize: lowercase and replace - . with _
+# Translation table for Prepared.normalize: lowercase and
894
+# replace "-" (hyphen) and "." (dot) with "_" (underscore).
895
_normalize_table = str.maketrans(
896
"ABCDEFGHIJKLMNOPQRSTUVWXYZ-.",
897
"abcdefghijklmnopqrstuvwxyz__",
0 commit comments