1
0
forked from VimPlug/jedi

star imports work now also in the start module

This commit is contained in:
David Halter
2012-04-19 00:04:24 +02:00
parent 900ee27192
commit 4365c80a53
6 changed files with 41 additions and 21 deletions

View File

@@ -1,9 +1,15 @@
import os
def array():
return list()
#? ['append']
array().app
array().append
#? ['array']
arr
def inputs(param):
return param
#? ['append']
inputs(list).append