1
0
forked from VimPlug/jedi

fix a problem found by sith with dynamic params (includes tests)

This commit is contained in:
David Halter
2013-08-12 02:23:44 +04:30
parent 27854a3948
commit faf7e0c422
2 changed files with 11 additions and 5 deletions

View File

@@ -63,6 +63,11 @@ def func(c=1):
func(1.0)
# Needs to be here, because in this case func is an import -> shouldn't lead to
# exceptions.
import sys as func
func.sys
# -----------------
# classes
# -----------------