[~] eval() renamed to expr()

git-svn-id: https://pykd.svn.codeplex.com/svn@59311 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
SND\EreTIk_cp 2010-12-29 13:59:23 +00:00
parent 22a1327c62
commit 44aeda68fb

View File

@ -88,7 +88,7 @@ BOOST_PYTHON_MODULE( pykd )
boost::python::def( "go", &setExecutionStatus<DEBUG_STATUS_GO> );
boost::python::def( "trace", &setExecutionStatus<DEBUG_STATUS_STEP_INTO> );
boost::python::def( "step", &setExecutionStatus<DEBUG_STATUS_STEP_OVER> );
boost::python::def( "eval", &evaluate );
boost::python::def( "expr", &evaluate );
boost::python::def( "createSession", &dbgCreateSession );
boost::python::def( "isSessionStart", &dbgIsSessionStart );
boost::python::def( "symbolsPath", &dbgSymPath );