10 from __future__ import unicode_literals |
10 from __future__ import unicode_literals |
11 |
11 |
12 from PyQt5.QtCore import QT_TRANSLATE_NOOP |
12 from PyQt5.QtCore import QT_TRANSLATE_NOOP |
13 |
13 |
14 # Variables type definition |
14 # Variables type definition |
|
15 # Special case for Python 2: don't add 'instancemethod'. It's renamed to |
|
16 # 'method' in DebugClientBase.py to be identical to Python 3 |
15 ConfigVarTypeDispStrings = { |
17 ConfigVarTypeDispStrings = { |
16 '__': QT_TRANSLATE_NOOP('Variable Types', 'Hidden Attributes'), |
18 '__': QT_TRANSLATE_NOOP('Variable Types', 'Hidden Attributes'), |
17 'NoneType': QT_TRANSLATE_NOOP('Variable Types', 'None'), |
19 'NoneType': QT_TRANSLATE_NOOP('Variable Types', 'None'), |
18 'type': QT_TRANSLATE_NOOP('Variable Types', 'Type'), |
20 'type': QT_TRANSLATE_NOOP('Variable Types', 'Type'), |
19 'bool': QT_TRANSLATE_NOOP('Variable Types', 'Boolean'), |
21 'bool': QT_TRANSLATE_NOOP('Variable Types', 'Boolean'), |