summaryrefslogtreecommitdiff
path: root/python/helpers/pydev/pydevd_signature.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/helpers/pydev/pydevd_signature.py')
-rw-r--r--python/helpers/pydev/pydevd_signature.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/python/helpers/pydev/pydevd_signature.py b/python/helpers/pydev/pydevd_signature.py
index e11bb5dd446b..03dc0eb9c98b 100644
--- a/python/helpers/pydev/pydevd_signature.py
+++ b/python/helpers/pydev/pydevd_signature.py
@@ -6,6 +6,7 @@ trace._warn = lambda *args: None # workaround for http://bugs.python.org/issue
import gc
from pydevd_comm import CMD_SIGNATURE_CALL_TRACE, NetCommand
import pydevd_vars
+from pydevd_constants import xrange
class Signature(object):
def __init__(self, file, name):
@@ -43,7 +44,7 @@ class SignatureFactory(object):
locals = frame.f_locals
filename, modulename, funcname = self.file_module_function_of(frame)
res = Signature(filename, funcname)
- for i in range(0, code.co_argcount):
+ for i in xrange(0, code.co_argcount):
name = code.co_varnames[i]
tp = type(locals[name])
class_name = tp.__name__
@@ -123,9 +124,8 @@ def create_signature_message(signature):
return NetCommand(CMD_SIGNATURE_CALL_TRACE, 0, cmdText)
def sendSignatureCallTrace(dbg, frame, filename):
- if dbg.signature_factory:
- if dbg.signature_factory.is_in_scope(filename):
- dbg.writer.addCommand(create_signature_message(dbg.signature_factory.create_signature(frame)))
+ if dbg.signature_factory.is_in_scope(filename):
+ dbg.writer.addCommand(create_signature_message(dbg.signature_factory.create_signature(frame)))