50 |
50 |
51 noOfItemsStr = QCoreApplication.translate("VariablesViewer", "{0} items") |
51 noOfItemsStr = QCoreApplication.translate("VariablesViewer", "{0} items") |
52 |
52 |
53 arrayTypes = {'list', 'tuple', 'dict', 'set', 'frozenset', |
53 arrayTypes = {'list', 'tuple', 'dict', 'set', 'frozenset', |
54 'numpy.ndarray', 'django.MultiValueDict', 'array.array', |
54 'numpy.ndarray', 'django.MultiValueDict', 'array.array', |
55 'collections.defaultdict'} |
55 'collections.defaultdict', "class 'dict_items'", |
|
56 "class 'dict_keys'", "class 'dict_values'"} |
56 |
57 |
57 def __init__(self, parent, dvar, dtype, dvalue): |
58 def __init__(self, parent, dvar, dtype, dvalue): |
58 """ |
59 """ |
59 Constructor |
60 Constructor |
60 |
61 |