eric6/Debugger/Config.py

changeset 7639
422fd05e9c91
parent 7360
9190402e4505
child 7780
41420f82c0ac
equal deleted inserted replaced
7638:176145438b1e 7639:422fd05e9c91
9 9
10 10
11 from PyQt5.QtCore import QT_TRANSLATE_NOOP 11 from PyQt5.QtCore import QT_TRANSLATE_NOOP
12 12
13 # Variables type definition 13 # Variables type definition
14 # Special case for Python 2: don't add 'instancemethod'. It's renamed to
15 # 'method' in DebugClientBase.py to be identical to Python 3
16 ConfigVarTypeDispStrings = { 14 ConfigVarTypeDispStrings = {
17 '__': QT_TRANSLATE_NOOP('Variable Types', 'Hidden Attributes'), 15 '__': QT_TRANSLATE_NOOP('Variable Types', 'Hidden Attributes'),
18 'NoneType': QT_TRANSLATE_NOOP('Variable Types', 'None'), 16 'NoneType': QT_TRANSLATE_NOOP('Variable Types', 'None'),
19 'type': QT_TRANSLATE_NOOP('Variable Types', 'Type'), 17 'type': QT_TRANSLATE_NOOP('Variable Types', 'Type'),
20 'bool': QT_TRANSLATE_NOOP('Variable Types', 'Boolean'), 18 'bool': QT_TRANSLATE_NOOP('Variable Types', 'Boolean'),
59 'int': 4, 57 'int': 4,
60 'long': 5, 58 'long': 5,
61 'float': 6, 59 'float': 6,
62 'complex': 7, 60 'complex': 7,
63 'str': 8, 61 'str': 8,
64 'unicode': 9, 62 'unicode': 9, # Not used anymore but keep to avoid reassignment
65 'tuple': 10, 63 'tuple': 10,
66 'list': 11, 64 'list': 11,
67 'dict': 12, 65 'dict': 12,
68 'dict-proxy': 13, 66 'dict-proxy': 13,
69 'set': 14, 67 'set': 14,

eric ide

mercurial