Files
python-uncompyle6/test/simple_source/bug30/00_chained-compare.py
2018-06-23 07:38:34 -04:00

7 lines
116 B
Python

# From 3.0 asyncore.py
# This is RUNNABLE!
r, w, e = ([], [], [])
if [] == r == w == e:
r = [1]
assert r == [1]