Index: examples/python/jump.py =================================================================== --- examples/python/jump.py +++ examples/python/jump.py @@ -78,7 +78,7 @@ if (mo is not None): matched = True # print "Matched " - address = long(mo.group(1), base=0) + address = int(mo.group(1), base=0) breakpoint = target.BreakpointCreateByAddress(address) if (not matched):