[0.3.x] fixed : issue # 13389 ( exception in event callback leads to application hang up )

git-svn-id: https://pykd.svn.codeplex.com/svn@89559 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
SND\ussrhero_cp 2015-01-01 23:13:26 +00:00 committed by Mikhail I. Izmestev
parent 19d9ca7a92
commit fd92d228ff

View File

@ -3,6 +3,7 @@
#include "kdlib/dbgio.h" #include "kdlib/dbgio.h"
#include "dbgexcept.h" #include "dbgexcept.h"
#include "pydbgio.h"
namespace pykd { namespace pykd {
@ -43,7 +44,7 @@ void printException()
for ( long i = 0; i < python::len(lst); ++i ) for ( long i = 0; i < python::len(lst); ++i )
sstr << std::wstring( python::extract<std::wstring>(lst[i]) ) << std::endl; sstr << std::wstring( python::extract<std::wstring>(lst[i]) ) << std::endl;
kdlib::eprintln( sstr.str() ); eprintln( sstr.str() );
} }