Skip to content

Commit 2f8fa9e

Browse files
committed
Don't intern name tuple
1 parent 97d34e2 commit 2f8fa9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/importlib/_bootstrap_external.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@ class FileLoader:
901901
def __init__(self, fullname, path):
902902
"""Cache the module name and the path to the file found by the
903903
finder."""
904-
self.name = sys.intern(fullname)
904+
self.name = fullname
905905
self.path = sys.intern(path)
906906

907907
def __eq__(self, other):

0 commit comments

Comments
 (0)