From 44104e820aaecc94b9da878fbc9dea43382f9d3e Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Thu, 10 Mar 2022 16:43:35 +0100 Subject: 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] --- mesonbuild/modules/python.py | 1 - 1 file changed, 1 deletion(-) 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': -- cgit v1.1