mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-05-13 05:53:24 +08:00
[0.1.x] added: conversion for intBase to long and unsigned long
git-svn-id: https://pykd.svn.codeplex.com/svn@75085 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
parent
512131bbdb
commit
3ba32a0b82
@ -137,8 +137,10 @@ BOOST_PYTHON_MODULE( pykd )
|
|||||||
|
|
||||||
python::implicitly_convertible<intBase,ULONG64>();
|
python::implicitly_convertible<intBase,ULONG64>();
|
||||||
python::implicitly_convertible<intBase,LONG64>();
|
python::implicitly_convertible<intBase,LONG64>();
|
||||||
|
python::implicitly_convertible<intBase,ULONG>();
|
||||||
|
python::implicitly_convertible<intBase,LONG>();
|
||||||
|
|
||||||
python::class_<DebugClient, DebugClientPtr>("dbgClient", "Class representing a debugging session", python::no_init )
|
python::class_<DebugClient, DebugClientPtr>("dbgClient", "Class representing a debugging session", python::no_init )
|
||||||
.def( "addr64", &DebugClient::addr64,
|
.def( "addr64", &DebugClient::addr64,
|
||||||
"Extend address to 64 bits formats" )
|
"Extend address to 64 bits formats" )
|
||||||
.def( "breakin", &DebugClient::breakin,
|
.def( "breakin", &DebugClient::breakin,
|
||||||
|
@ -176,7 +176,7 @@ std::string PtrTypedVar::print()
|
|||||||
{
|
{
|
||||||
std::stringstream sstr;
|
std::stringstream sstr;
|
||||||
|
|
||||||
sstr << m_typeInfo->getName() << " " << m_varData->asString();
|
sstr << "Ptr " << m_typeInfo->getName() << " " << m_varData->asString();
|
||||||
sstr << " Value: " << printValue();
|
sstr << " Value: " << printValue();
|
||||||
|
|
||||||
return sstr.str();
|
return sstr.str();
|
||||||
|
Loading…
Reference in New Issue
Block a user