eric6/DebugClients/Python/DebugClientBase.py

branch
Variables Viewer
changeset 6980
cf9351b063a8
parent 6979
c272ec33ea11
child 6988
87ad87ef1910
equal deleted inserted replaced
6979:c272ec33ea11 6980:cf9351b063a8
1818 elif ConfigVarTypeStrings.index('instance') in filterList: 1818 elif ConfigVarTypeStrings.index('instance') in filterList:
1819 continue 1819 continue
1820 1820
1821 isQt = valtype.startswith(ConfigQtNames) 1821 isQt = valtype.startswith(ConfigQtNames)
1822 if (not valtypestr.startswith('type ') and 1822 if (not valtypestr.startswith('type ') and
1823 valtypename not in ( 1823 valtypename not in ("ndarray", "MultiValueDict",
1824 "ndarray", "MultiValueDict", "array", 1824 "array", "defaultdict") and
1825 "defaultdict" 1825 not isQt):
1826 ) and not isQt): # __IGNORE_WARNING_E123__
1827 valtype = valtypestr 1826 valtype = valtypestr
1828 1827
1829 try: 1828 try:
1830 if valtype in ['list', 'tuple', 'dict', 'set', 'frozenset' 1829 if valtype in ['list', 'tuple', 'dict', 'set', 'frozenset'
1831 ]: 1830 ]:

eric ide

mercurial