Skip to content

Commit 389f544

Browse files
authored
Merge branch 'master' into show_field_tabs
2 parents aa9d22e + 8f88b65 commit 389f544

25 files changed

+1514
-176
lines changed

.travis.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,6 @@ matrix:
1717
sudo: required
1818
compiler: clang
1919
env: PYTHON_VERSION=3.5.6 OSPRAY_BUILD=OFF
20-
- os: osx
21-
osx_image: xcode7.2
22-
env: PYTHON_VERSION=3.4.3 OSPRAY_BUILD=OFF
23-
- os: osx
24-
osx_image: xcode8.3
25-
env: PYTHON_VERSION=3.4.3 OSPRAY_BUILD=OFF
26-
- os: osx
27-
osx_image: xcode9.3
28-
env: PYTHON_VERSION=3.4.3 OSPRAY_BUILD=OFF
29-
- os: osx
30-
osx_image: xcode10.1
31-
env: PYTHON_VERSION=3.4.3 OSPRAY_BUILD=OFF
3220
- os: osx
3321
osx_image: xcode7.2
3422
env: PYTHON_VERSION=3.5.6 OSPRAY_BUILD=OFF
@@ -44,12 +32,6 @@ matrix:
4432
- os: osx
4533
osx_image: xcode7.2
4634
env: PYTHON_VERSION=3.6.7 OSPRAY_BUILD=OFF
47-
- os: osx
48-
osx_image: xcode8.3
49-
env: PYTHON_VERSION=3.6.7 OSPRAY_BUILD=OFF
50-
- os: osx
51-
osx_image: xcode9.3
52-
env: PYTHON_VERSION=3.6.7 OSPRAY_BUILD=OFF
5335
- os: osx
5436
osx_image: xcode10.1
5537
env: PYTHON_VERSION=3.6.7 OSPRAY_BUILD=OFF

src/Core/Python/PythonInterpreter.cc

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,7 @@
5353
#include <Core/Python/PythonInterpreter.h>
5454

5555
#include <Dataflow/Engine/Python/SCIRunPythonModule.h>
56-
57-
58-
//#ifdef _MSC_VER
59-
//#pragma warning( pop )
60-
//#endif
61-
62-
//#include <Interface/PythonTestGui/Python/ToPythonConverters.h>
56+
#include <Core/Logging/Log.h>
6357

6458
using namespace SCIRun::Core;
6559

@@ -506,6 +500,7 @@ void PythonInterpreter::print_banner()
506500

507501
bool PythonInterpreter::run_string( const std::string& command )
508502
{
503+
LOG_DEBUG("Python::run_string( {} )", command);
509504
{
510505
PythonInterpreterPrivate::lock_type lock( this->private_->get_mutex() );
511506
if ( !this->private_->initialized_ )
@@ -582,6 +577,7 @@ bool PythonInterpreter::run_string( const std::string& command )
582577

583578
void PythonInterpreter::run_script( const std::string& script )
584579
{
580+
LOG_DEBUG("Python::run_script( {} )", script);
585581
{
586582
PythonInterpreterPrivate::lock_type lock( this->private_->get_mutex() );
587583
if ( !this->private_->initialized_ )
@@ -627,6 +623,7 @@ void PythonInterpreter::run_script( const std::string& script )
627623

628624
bool PythonInterpreter::run_file( const std::string& file_name )
629625
{
626+
LOG_DEBUG("Python::run_file( {} )", file_name);
630627
{
631628
PythonInterpreterPrivate::lock_type lock( this->private_->get_mutex() );
632629
if ( !this->private_->initialized_ )

0 commit comments

Comments
 (0)