修改文件位于\Python27\Lib\idlelib\目录下
【步骤一 修改等待时间】
文件:config-extensions.def
修改popupwait = 2000字段
[AutoComplete]
enable=1
popupwait=2000(2000
表示2秒,修改为0)
【步骤二:修改提示模块】
文件:AutoComplete.py
import os
import sys
import string
在后面添加待提示的模块
(import 方式)
如图(红框内为新加模块)