1
0
forked from VimPlug/jedi

Moved jedi files to separate package folder

This commit is contained in:
Danilo Bargen
2012-09-17 22:38:38 +02:00
parent a82e89957b
commit 21826e7a34
17 changed files with 0 additions and 0 deletions

45
jedi/debug.py Normal file
View File

@@ -0,0 +1,45 @@
import inspect
try:
# Use colorama for nicer console output.
from colorama import Fore, init
init()
except ImportError:
class Fore(object):
RED = ''
GREEN = ''
RESET = ''
NOTICE = object()
WARNING = object()
ERROR = object()
debug_function = None
ignored_modules = ['parsing', 'builtin']
def dbg(*args):
""" Looks at the stack, to see if a debug message should be printed. """
if debug_function:
frm = inspect.stack()[1]
mod = inspect.getmodule(frm[0])
if not (mod.__name__ in ignored_modules):
debug_function(NOTICE, *args)
def warning(*args):
if debug_function:
debug_function(WARNING, *args)
def error(*args):
if debug_function:
debug_function(ERROR, *args)
def print_to_stdout(level, *args):
""" The default debug function """
msg = (Fore.GREEN + 'dbg: ' if level == NOTICE else Fore.RED + 'warning: ')
print(msg + ', '.join(str(a) for a in args) + Fore.RESET)
#debug_function = print_to_stdout