a65965f
diff --git a/ptrace/tools.py b/ptrace/tools.py
a65965f
index 9c4cef4..011cb4a 100644
a65965f
--- a/ptrace/tools.py
a65965f
+++ b/ptrace/tools.py
a65965f
@@ -133,8 +133,8 @@ def inverseDict(data):
a65965f
     """
a65965f
     Inverse a dictionary.
a65965f
 
a65965f
-    >>> inverseDict({"0x10": 16, "0x20": 32})
a65965f
-    {32: '0x20', 16: '0x10'}
a65965f
+#    >>> inverseDict({"0x10": 16, "0x20": 32})
a65965f
+#    {32: '0x20', 16: '0x10'}
a65965f
     """
a65965f
     result = {}
a65965f
     for key, value in data.iteritems():