Remove some redundant decorators.
diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py
index 3dcd05a..deaded9 100644
--- a/Lib/importlib/_bootstrap.py
+++ b/Lib/importlib/_bootstrap.py
@@ -949,8 +949,6 @@
     def module_repr(cls, module):
         return "<module '{}' (namespace)>".format(module.__name__)
 
-    @set_package
-    @set_loader
     @module_for_loader
     def load_module(self, module):
         """Load a namespace module."""
diff --git a/Python/importlib.h b/Python/importlib.h
index bdb3644..cd8fbeb 100644
--- a/Python/importlib.h
+++ b/Python/importlib.h
Binary files differ