def getVariable(self, attributes): xml = "<xml>" valDict = pydevd_vars.resolveVar(self.getNamespace(), attributes) if valDict is None: valDict = {} keys = valDict.keys() for k in keys: xml += pydevd_vars.varToXML(valDict[k], to_string(k)) xml += "</xml>" return xml