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 ]: |