1
0
forked from VimPlug/jedi

Get rid of the None default for memoize_default. It shouldn't have a default if not given. This also uncovered a bug in for/else loops, that wasn't teste before.

This commit is contained in:
Dave Halter
2015-02-27 01:42:14 +01:00
parent a998c36fa3
commit f5dad437dd
3 changed files with 9 additions and 2 deletions

View File

@@ -105,6 +105,13 @@ for i in b:
#? float() str()
a[0]
for i in [1,2,3]:
#? int()
i
else:
i
# -----------------
# range()
# -----------------