Fri, 16 Sep 2016 19:28:39 +0200
Continued improving the variable dumping of the debugger backends.
# -*- coding: utf-8 -*- # Copyright (c) 2009 - 2016 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module defining type strings for the different Python types. """ # # Keep this list in sync with Debugger.Config.ConfigVarTypeFilters # ConfigVarTypeStrings = [ '__', 'NoneType', 'type', 'bool', 'int', 'long', 'float', 'complex', 'str', 'unicode', 'tuple', 'list', 'dict', 'dict-proxy', 'set', 'file', 'xrange', 'slice', 'buffer', 'class', 'instance', 'method', 'property', 'generator', 'function', 'builtin_function_or_method', 'code', 'module', 'ellipsis', 'traceback', 'frame', 'other', 'frozenset' ] # # eflag: noqa = M702