$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: dave_at_[hidden]
Date: 2007-10-28 15:24:03
Author: dave
Date: 2007-10-28 15:24:02 EDT (Sun, 28 Oct 2007)
New Revision: 40536
URL: http://svn.boost.org/trac/boost/changeset/40536
Log:
Take out print statement I added for debugging purposes.
Text files modified:
trunk/libs/python/test/import_.cpp | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
Modified: trunk/libs/python/test/import_.cpp
==============================================================================
--- trunk/libs/python/test/import_.cpp (original)
+++ trunk/libs/python/test/import_.cpp 2007-10-28 15:24:02 EDT (Sun, 28 Oct 2007)
@@ -26,8 +26,7 @@
bpl::str script(
"import sys, os.path\n"
"path = os.path.dirname(%r)\n"
- "sys.path.insert(0, path)\n"
- "print 'sys.path=',sys.path"
+ "sys.path.insert(0, path)"
% bpl::str(py_file_path));
bpl::object result = bpl::exec(script, global, global);