mirror of https://github.com/snare/voltron.git
xrange alias not propogating so we need to set it explicitly in some places (#268)
This commit is contained in:
parent
ba413dcbc1
commit
0b7a2fba88
|
@ -0,0 +1,2 @@
|
|||
if not hasattr(__builtins__, "xrange"):
|
||||
xrange = range
|
|
@ -0,0 +1,2 @@
|
|||
if not hasattr(__builtins__, "xrange"):
|
||||
xrange = range
|
|
@ -10,6 +10,8 @@ from voltron.api import *
|
|||
from voltron.plugin import *
|
||||
from voltron.dbg import *
|
||||
|
||||
from voltron.plugins.debugger import xrange
|
||||
|
||||
try:
|
||||
import lldb
|
||||
HAVE_LLDB = True
|
||||
|
|
Loading…
Reference in New Issue