DebugClients/Python2/DebugConfig.py

branch
debugger speed
changeset 5174
8c48f5e0cd92
parent 5171
f1e9eebd5469
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/DebugClients/Python2/DebugConfig.py	Sun Sep 18 21:35:53 2016 +0200
@@ -0,0 +1,26 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2005 - 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: FileType = Python2
+# eflag: noqa = M601, M702

eric ide

mercurial