Index: lldb/examples/python/jump.py =================================================================== --- lldb/examples/python/jump.py +++ lldb/examples/python/jump.py @@ -80,7 +80,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):