diff --git a/pykd/python/pymod.cpp b/pykd/python/pymod.cpp index e8883ff..da91adc 100644 --- a/pykd/python/pymod.cpp +++ b/pykd/python/pymod.cpp @@ -615,7 +615,7 @@ BOOST_PYTHON_MODULE( pykd ) "Triggered execution status changed. Parameter - execution status.\n" "There is no return value" ) .def( "onSymbolsLoaded", &EventHandlerWrap::onSymbolsLoaded, - "Triggered debug symbols loaded. Parameter - module base\n" + "Triggered debug symbols loaded. Parameter - module base or 0\n" "There is no return value") .def( "onSymbolsUnloaded", &EventHandlerWrap::onSymbolsUnloaded, "Triggered debug symbols unloaded. Parameter - module base or 0 (all modules)\n" @@ -627,7 +627,7 @@ BOOST_PYTHON_MODULE( pykd ) pykd::exception( "BaseException", "Pykd base exception class" ); pykd::exception( "MemoryException", "Target memory access exception class" ); //pykd::exception( "WaitEventException", "Debug interface access exception" ); - pykd::exception( "WaitEventException", "Debug interface access exception" ); + pykd::exception( "WrongEventTypeException", "Unknown last event type" ); pykd::exception( "SymbolException", "Symbol exception" ); //pykd::exception( "DiaException", "Debug interface access exception" ); pykd::exception( "TypeException", "type exception" );