eric6/UI/PythonDisViewer.py

changeset 7712
d8eedc2e5a0a
parent 7711
5e6792b85a8a
child 7714
79bde78e3e16
equal deleted inserted replaced
7711:5e6792b85a8a 7712:d8eedc2e5a0a
812 self.tr("Argument Count"), str(codeInfo["argcount"])]) 812 self.tr("Argument Count"), str(codeInfo["argcount"])])
813 QTreeWidgetItem(self.codeInfoWidget, [ 813 QTreeWidgetItem(self.codeInfoWidget, [
814 self.tr("Positional-only Arguments"), 814 self.tr("Positional-only Arguments"),
815 str(codeInfo["posonlyargcount"])]) 815 str(codeInfo["posonlyargcount"])])
816 QTreeWidgetItem(self.codeInfoWidget, [ 816 QTreeWidgetItem(self.codeInfoWidget, [
817 self.tr("Keyword-only arguments"), 817 self.tr("Keyword-only Arguments"),
818 str(codeInfo["kwonlyargcount"])]) 818 str(codeInfo["kwonlyargcount"])])
819 QTreeWidgetItem(self.codeInfoWidget, [ 819 QTreeWidgetItem(self.codeInfoWidget, [
820 self.tr("Number of Locals"), str(codeInfo["nlocals"])]) 820 self.tr("Number of Locals"), str(codeInfo["nlocals"])])
821 QTreeWidgetItem(self.codeInfoWidget, [ 821 QTreeWidgetItem(self.codeInfoWidget, [
822 self.tr("Stack Size"), str(codeInfo["stacksize"])]) 822 self.tr("Stack Size"), str(codeInfo["stacksize"])])

eric ide

mercurial