2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 06:02:14 +00:00

Take out print statement I added for debugging purposes.

[SVN r40536]
This commit is contained in:
Dave Abrahams
2007-10-28 19:24:02 +00:00
parent cfe6f96f69
commit 90c5c19220

View File

@@ -26,8 +26,7 @@ void import_test(char const *py_file_path)
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);