Mon, 22 Feb 2016 22:26:21 +0100
Improved shell completer for local variables and behavior of Python versions equaled.
(grafted from 803bf753032a52c5c6706d5e87444e061d13ad29)
# -*- coding: utf-8 -*- # Copyright (c) 2009 - 2016 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module defining type strings for the different Python types. """ ConfigVarTypeStrings = [ '__', 'NoneType', 'type', 'bool', 'int', 'long', 'float', 'complex', 'str', 'unicode', 'tuple', 'list', 'dict', 'dict-proxy', 'set', 'file', 'xrange', 'slice', 'buffer', 'class', 'instance', 'instance method', 'property', 'generator', 'function', 'builtin_function_or_method', 'code', 'module', 'ellipsis', 'traceback', 'frame', 'other' ] # # eflag: noqa = M702