aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@gmail.com>2022-03-10 16:43:35 +0100
committerXavier Claessens <xclaesse@gmail.com>2022-03-10 15:30:31 -0500
commit44104e820aaecc94b9da878fbc9dea43382f9d3e (patch)
treeaebb8c283044b995884aee5944b5dedb1397a200
parentcec7d491f91df7fab44b9f5bf165fa6cc75ee62d (diff)
downloadmeson-44104e820aaecc94b9da878fbc9dea43382f9d3e.zip
meson-44104e820aaecc94b9da878fbc9dea43382f9d3e.tar.gz
meson-44104e820aaecc94b9da878fbc9dea43382f9d3e.tar.bz2
Remove a spurious debug print in Python module
This prints many lines of unwanted "done /absolute/path", I noticed this when testing 0.62.0rc1 with SciPy. [ci skip]
-rw-r--r--mesonbuild/modules/python.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/mesonbuild/modules/python.py b/mesonbuild/modules/python.py
index 0f2d59f..3eac33f 100644
--- a/mesonbuild/modules/python.py
+++ b/mesonbuild/modules/python.py
@@ -414,7 +414,6 @@ class PythonExternalProgram(ExternalProgram):
if subdir_parts[-len(install_subdir_parts):] == install_subdir_parts:
pypath = os.path.join(basedir, *subdir_parts[:-len(install_subdir_parts)])
self.devenv_pythonpath.add(pypath)
- print('done', pypath)
def _check_version(self, version: str) -> bool:
if self.name == 'python2':