1
0
forked from VimPlug/jedi

Fix argument clinic unpacking, remove dynamic bullshit

This commit is contained in:
Dave Halter
2020-05-10 13:27:20 +02:00
parent 1115cbd94d
commit 6dbc5e783e
3 changed files with 24 additions and 25 deletions

View File

@@ -171,6 +171,9 @@ def example(a):
#? str()
example('')
# From GH #1574
#? float()
functools.wraps(functools.partial(str, 1))(lambda: 1.0)()
# -----------------
# sqlite3 (#84)