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'), |