使用绝地自动完成库,我发现每次调用Script.completions()
都会使连续调用变慢。
在下面的代码中,我重复了我的run
函数三遍。我不清楚为什么,但每一个都比前一个花费更长的时间。
import jedi
import time
def measure(source):
start = time.time()
script = jedi.Script(source, line=1, column=0)
script.completions()
print(' %-20s%f' % (source, time.time() - start))
def run():
start = time.time()
measure('min(1,2)')
measure('max(1,2)')
measure('print("Hello")')
measure('abs(1)')
measure('set()')
measure('dict()')
print('Total: %f' % (time.time() - start))
run()
run()
run()
结果:
min(1,2) 0.016168
max(1,2) 0.014470
print("Hello") 0.016843
abs(1) 0.019889
set() 0.023725
dict() 0.025874
Total: 0.117067
min(1,2) 0.029772
max(1,2) 0.034207
print("Hello") 0.034982
abs(1) 0.038538
set() 0.041346
dict() 0.054610
Total: 0.233565
min(1,2) 0.047249
max(1,2) 0.050380
print("Hello") 0.053113
abs(1) 0.056774
set() 0.059072
dict() 0.062129
Total: 0.328825
感谢您就为什么会发生这种情况以及我能做些什么来防止它提供任何建议。