eric7/Debugger/Config.py

branch
eric7
changeset 8568
890dfe038613
parent 8318
962bce857696
child 8573
77845f40ebfe
diff -r 17fb004af51d -r 890dfe038613 eric7/Debugger/Config.py
--- a/eric7/Debugger/Config.py	Sun Aug 29 17:50:13 2021 +0200
+++ b/eric7/Debugger/Config.py	Sun Aug 29 19:19:31 2021 +0200
@@ -13,10 +13,8 @@
 ConfigVarTypeDispStrings = {
     '__': QT_TRANSLATE_NOOP('Variable Types', 'Hidden Attributes'),
     'NoneType': QT_TRANSLATE_NOOP('Variable Types', 'None'),
-    'type': QT_TRANSLATE_NOOP('Variable Types', 'Type'),
     'bool': QT_TRANSLATE_NOOP('Variable Types', 'Boolean'),
     'int': QT_TRANSLATE_NOOP('Variable Types', 'Integer'),
-    'long': QT_TRANSLATE_NOOP('Variable Types', 'Long Integer'),
     'float': QT_TRANSLATE_NOOP('Variable Types', 'Float'),
     'complex': QT_TRANSLATE_NOOP('Variable Types', 'Complex'),
     'str': QT_TRANSLATE_NOOP('Variable Types', 'String'),
@@ -27,7 +25,7 @@
     'set': QT_TRANSLATE_NOOP('Variable Types', 'Set'),
     'frozenset': QT_TRANSLATE_NOOP('Variable Types', 'Frozen Set'),
     'file': QT_TRANSLATE_NOOP('Variable Types', 'File'),
-    'xrange': QT_TRANSLATE_NOOP('Variable Types', 'X Range'),
+    'range': QT_TRANSLATE_NOOP('Variable Types', 'Range'),
     'slice': QT_TRANSLATE_NOOP('Variable Types', 'Slice'),
     'buffer': QT_TRANSLATE_NOOP('Variable Types', 'Buffer'),
     'class': QT_TRANSLATE_NOOP('Variable Types', 'Class'),
@@ -46,4 +44,11 @@
     'bytes': QT_TRANSLATE_NOOP('Variable Types', 'Bytes'),
     "special_attributes": QT_TRANSLATE_NOOP(
         'Variable Types', "Special Attributes"),
+    'dict_items': QT_TRANSLATE_NOOP('Variable Types', 'Dict. Items View'),
+    'dict_keys': QT_TRANSLATE_NOOP('Variable Types', 'Dict. Keys View'),
+    'dict_values': QT_TRANSLATE_NOOP('Variable Types', 'Dict. Values View'),
+    'async_generator': QT_TRANSLATE_NOOP('Variable Types',
+        'Asynchronous Generator'),
+    'coroutine': QT_TRANSLATE_NOOP('Variable Types', 'Coroutine'),
+    'mappingproxy': QT_TRANSLATE_NOOP('Variable Types', 'Mapping Proxy'),
 }

eric ide

mercurial