diff --git a/pykd/python/pymod.cpp b/pykd/python/pymod.cpp index f81908a..5e5a109 100644 --- a/pykd/python/pymod.cpp +++ b/pykd/python/pymod.cpp @@ -565,8 +565,8 @@ BOOST_PYTHON_MODULE( pykd ) .def( "ea", &Disasm::ea, "Return effective address for last disassembled instruction or 0" ) .def( "reset", &Disasm::reset, "Reset current offset to begin" ) .def( "findOffset", &Disasm::getNearInstruction, "Return the location of a processor instruction relative to a given location" ) - .def( "jump", &Disasm::jump, "Change current instruction" ) - .def( "jumprel", &Disasm::jumprel, "Change current instruction" ); + .def( "jump", &Disasm::jump, "Change the current instruction" ) + .def( "jumprel", &Disasm::jumprel, "Change the current instruction" ); python::enum_("eventResult", "Return value of event handler") diff --git a/test/scripts/pykdtest.py b/test/scripts/pykdtest.py index 196a7d5..830857d 100644 --- a/test/scripts/pykdtest.py +++ b/test/scripts/pykdtest.py @@ -71,7 +71,7 @@ if __name__ == "__main__": #print "Test module: %s" % target.appPath unittest.TextTestRunner(stream=sys.stdout, verbosity=2).run( getTestSuite() ) - #unittest.TextTestRunner(stream=sys.stdout, verbosity=2).run( getTestSuite("typedvar.TypedVarTest.testAmbiguousFieldAccess") ) + #unittest.TextTestRunner(stream=sys.stdout, verbosity=2).run( getTestSuite("customtypestest.CustomTypesTest.testPtrToCustomType") ) raw_input(">") # \ No newline at end of file