mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 06:40:05 +08:00
10 lines
209 B
Python
10 lines
209 B
Python
import jedi
|
|
from jedi import debug
|
|
|
|
def test_simple():
|
|
jedi.set_debug_function()
|
|
debug.speed('foo')
|
|
debug.dbg('bar')
|
|
debug.warning('baz')
|
|
jedi.set_debug_function(None, False, False, False)
|