mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
@@ -387,7 +387,7 @@ class BaseInterpreterInterface:
|
||||
|
||||
def getArray(self, attr, roffset, coffset, rows, cols, format):
|
||||
xml = "<xml>"
|
||||
name = ".".join(attr.split("\t"))
|
||||
name = attr.split("\t")[-1]
|
||||
array = pydevd_vars.evalInContext(name, self.getNamespace(), self.getNamespace())
|
||||
|
||||
if rows == -1 and cols == -1:
|
||||
|
||||
@@ -974,15 +974,15 @@ class InternalGetArray(InternalThreadCommand):
|
||||
self.thread_id = thread_id
|
||||
self.frame_id = frame_id
|
||||
self.scope = scope
|
||||
self.name = ".".join(attrs.split("\t"))
|
||||
self.name = attrs.split("\t")[-1]
|
||||
self.attrs = attrs
|
||||
self.roffset = int(roffset)
|
||||
self.coffset = int(coffset)
|
||||
self.rows = int(rows)
|
||||
self.cols = int(cols)
|
||||
self.format = format
|
||||
if hasattr(self.format, 'decode'):
|
||||
self.format = self.format.decode('utf-8')
|
||||
if hasattr(self.format, 'encode'):
|
||||
self.format = self.format.encode('utf-8')
|
||||
|
||||
def doIt(self, dbg):
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user