aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/modules/python.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2018-12-10 11:12:53 -0800
committerDylan Baker <dylan@pnwbakers.com>2018-12-12 12:23:37 -0800
commit3d322b3381c0ba2ea71792d5c6c5ad32e205d65a (patch)
treea7580aa312025a4fb114ddb2ca48118f2bc6368b /mesonbuild/modules/python.py
parent03805287e519b5f327239bf0b36e70200b01f6ba (diff)
downloadmeson-3d322b3381c0ba2ea71792d5c6c5ad32e205d65a.zip
meson-3d322b3381c0ba2ea71792d5c6c5ad32e205d65a.tar.gz
meson-3d322b3381c0ba2ea71792d5c6c5ad32e205d65a.tar.bz2
modules/python: don't inherit from InterpreterObject
Because ExternalProjectHolder already does
Diffstat (limited to 'mesonbuild/modules/python.py')
-rw-r--r--mesonbuild/modules/python.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/modules/python.py b/mesonbuild/modules/python.py
index 6af3374..0707ed1 100644
--- a/mesonbuild/modules/python.py
+++ b/mesonbuild/modules/python.py
@@ -284,9 +284,9 @@ print (json.dumps ({
}))
'''
-class PythonInstallation(ExternalProgramHolder, InterpreterObject):
+
+class PythonInstallation(ExternalProgramHolder):
def __init__(self, interpreter, python, info):
- InterpreterObject.__init__(self)
ExternalProgramHolder.__init__(self, python)
self.interpreter = interpreter
prefix = self.interpreter.environment.coredata.get_builtin_option('prefix')