Hi, I'm trying to write a pretty-printer for Qt QMap using python. QMap uses the following code: static inline Node *concrete(QMapData::Node *node) { return reinterpret_cast<Node *>(reinterpret_cast<char *>(node) - payload()); } How can I do such an operation with gdb.Value? thanks, Niko