diff -r 8c48f5e0cd92 -r 878ce843ca9f DebugClients/Python/DebugConfig.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/DebugClients/Python/DebugConfig.py Mon Sep 19 22:47:52 2016 +0200 @@ -0,0 +1,25 @@ +# -*- 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