mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-08 06:44:46 +08:00
function calls work right now
This commit is contained in:
3
debug.py
3
debug.py
@@ -21,7 +21,8 @@ def error(*args):
|
||||
|
||||
def print_to_stdout(level, *args):
|
||||
""" The default debug function """
|
||||
print 'dbg:' if level == NOTICE else 'warning:', args
|
||||
print(('dbg: ' if level == NOTICE else 'warning: ') +
|
||||
', '.join(str(a) for a in args))
|
||||
|
||||
debug_function = None
|
||||
#debug_function = print_to_stdout
|
||||
|
||||
Reference in New Issue
Block a user