fix list comprehension issues in nested parentheses.

This commit is contained in:
Dave Halter
2014-06-20 17:29:30 +02:00
parent 2fc404f99d
commit 3ee3a04bcb
2 changed files with 8 additions and 2 deletions

View File

@@ -151,6 +151,10 @@ def listen(arg):
x
listen(['' for x in [1]])
#? str()
([str for x in []])[0]
# -----------------
# nested list comprehensions
# -----------------