Made Python module match the new init interface.

pull/3372/head
Jussi Pakkanen 7 years ago
parent 92487ea33d
commit 9790f2d500
  1. 8
      mesonbuild/modules/python.py

@ -359,8 +359,8 @@ class PythonInstallation(ExternalProgramHolder, InterpreterObject):
class PythonModule(ExtensionModule): class PythonModule(ExtensionModule):
def __init__(self): def __init__(self, *args, **kwargs):
super().__init__() super().__init__(*args, **kwargs)
self.snippets.add('find_installation') self.snippets.add('find_installation')
# https://www.python.org/dev/peps/pep-0397/ # https://www.python.org/dev/peps/pep-0397/
@ -429,5 +429,5 @@ class PythonModule(ExtensionModule):
return res return res
def initialize(): def initialize(*args, **kwargs):
return PythonModule() return PythonModule(*args, **kwargs)

Loading…
Cancel
Save