classification
Title: IDLE: Enhance import statement completion
Type: enhancement Stage: needs patch
Components: IDLE Versions: Python 3.4
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: Ramchandra Apte, roger.serwy, terry.reedy
Priority: normal Keywords:

Created on 2013-02-19 15:32 by Ramchandra Apte, last changed 2013-04-07 01:36 by roger.serwy.

Messages (1)
msg182392 - (view) Author: Ramchandra Apte (Ramchandra Apte) * Date: 2013-02-19 15:32
[patch under development]
I propose to add completions for 
import <tab>
from <tab>
from x import <tab>

Also, if one types imp.<tab> , IDLE should import the module and list dir(module).
(There will be an option to disable/enable the last two completion cases as some users object to it importing modules for completion)
History
Date User Action Args
2013-04-07 01:36:20roger.serwysetnosy: + roger.serwy

title: Enhance import statement completion -> IDLE: Enhance import statement completion
2013-02-19 15:35:51ezio.melottisetstage: needs patch
versions: - Python 3.3
2013-02-19 15:32:51Ramchandra Aptecreate