From 44aeda68fb7c8df2bc17d9642151a5d6b6002703 Mon Sep 17 00:00:00 2001 From: "SND\\EreTIk_cp" Date: Wed, 29 Dec 2010 13:59:23 +0000 Subject: [PATCH] [~] eval() renamed to expr() git-svn-id: https://pykd.svn.codeplex.com/svn@59311 9b283d60-5439-405e-af05-b73fd8c4d996 --- pykd/dbgext.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pykd/dbgext.cpp b/pykd/dbgext.cpp index 648bf7b..5988238 100644 --- a/pykd/dbgext.cpp +++ b/pykd/dbgext.cpp @@ -88,7 +88,7 @@ BOOST_PYTHON_MODULE( pykd ) boost::python::def( "go", &setExecutionStatus ); boost::python::def( "trace", &setExecutionStatus ); boost::python::def( "step", &setExecutionStatus ); - 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 );