python 2.7 idle 配置语法提示功能

  • Post author:
  • Post category:python


使用Python自带编辑器python IDLE的语法提示功能的配置

1.C:\Python27\Lib\idlelib\config-extensions.def文件

编辑


[AutoComplete]



enable=1



popupwait=2000

(

改为0,语法提示等待时间

)


2.C:\Python27\Lib\idlelib\AutoComplete.py


import os



import sys



import string

追加更多需要被提示的lib

转载于:https://www.cnblogs.com/t-witness/p/3951250.html