We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ee898e commit fc1ad78Copy full SHA for fc1ad78
src/pyconcrete/__init__.py
@@ -103,7 +103,8 @@ def get_source(self, fullname):
103
104
105
def install():
106
- loader_details = [(PyeLoader, SOURCE_SUFFIXES)] + _get_supported_file_loaders()
+ # only put pyconcrete ext/suffix(.pye) for loader, leave default suffixes(SOURCE_SUFFIXES) to default loader
107
+ loader_details = [(PyeLoader, [get_ext()])] + _get_supported_file_loaders()
108
109
sys.path_importer_cache.clear()
110
sys.path_hooks.insert(0, FileFinder.path_hook(*loader_details))
0 commit comments