Tweak importlib._bootstrap to avoid zero-argument super so I can work on issue #14857 without breaking imports
diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py
index deaded9..6656db3 100644
--- a/Lib/importlib/_bootstrap.py
+++ b/Lib/importlib/_bootstrap.py
@@ -771,7 +771,9 @@
     @_check_name
     def load_module(self, fullname):
         """Load a module from a file."""
-        return super().load_module(fullname)
+        # Issue #14857: Avoid the zero-argument form so the implementation
+        # of that form can be updated without breaking the frozen module
+        return super(FileLoader, self).load_module(fullname)
 
     @_check_name
     def get_filename(self, fullname):
diff --git a/Python/importlib.h b/Python/importlib.h
index cd8fbeb..224e28c 100644
--- a/Python/importlib.h
+++ b/Python/importlib.h
Binary files differ