Fix another issue.

This commit is contained in:
Dave Halter
2016-07-27 21:17:12 +02:00
parent 0a4e858d88
commit 4c6669e081
2 changed files with 24 additions and 7 deletions

View File

@@ -172,3 +172,12 @@ def x():
#? 22
[a for a in h if hio]
if hio: pass
# -----------------
# slices
# -----------------
#? list()
foo = [x for x in [1, '']][:1]
#? int()
foo[0]