remove unused argument from calls to set_debug_function

This commit is contained in:
David Halter
2013-08-16 14:06:53 +04:30
parent 8996bd6ad1
commit f12e7f66c4
2 changed files with 2 additions and 3 deletions

View File

@@ -304,8 +304,7 @@ if __name__ == '__main__':
import sys
if arguments['--debug']:
from jedi import api, debug
api.set_debug_function(debug.print_to_stdout)
jedi.set_debug_function()
# get test list, that should be executed
test_files = {}

View File

@@ -12,7 +12,7 @@ import jedi
from jedi import Script
from jedi import api, parsing
#jedi.set_debug_function(jedi.debug.print_to_stdout)
#jedi.set_debug_function()
class TestRegression(TestCase):