From 73ff6af2c7b28f5a36b739bb8e2d78a0bc2a032f Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Wed, 4 Nov 2009 16:14:47 +0000 Subject: [PATCH] Remove debug prints [SVN r57359] --- src/tools/python.jam | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/tools/python.jam b/src/tools/python.jam index ae954d638..66f2aabec 100644 --- a/src/tools/python.jam +++ b/src/tools/python.jam @@ -1099,15 +1099,6 @@ class python-test-generator : generator local python ; local other-pythons ; - #XXX(bhy) DEBUG CODE BEGIN - ECHO beforerun= ; - for local s in $(sources) - { - ECHO [ $(s).name ] ; - } - ECHO ; - #XXX(bhy) DEBUG CODE END - # Make new target that converting Python source by 2to3 when running with Python 3. local rule make-2to3-source ( source ) { @@ -1268,14 +1259,6 @@ rule bpl-test ( name : sources * : requirements * ) { local s ; sources ?= $(name).py $(name).cpp ; - #XXX(bhy) DEBUG CODE BEGIN - ECHO bpl-test= ; - for local s in $(sources) - { - ECHO $(s) ; - } - ECHO ; - #XXX(bhy) DEBUG CODE END return [ testing.make-test run-pyd : $(sources) /boost/python//boost_python : $(requirements) : $(name) ] ; }