Mon, 19 Sep 2016 22:47:52 +0200
Preparation for combining the Python 2 and 3 debug clients. Base is Python 3.
# -*- 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