Files
python-uncompyle6/test/simple_source/bug36/05_if_and_comp.py
2018-03-18 19:12:16 -04:00

8 lines
235 B
Python

# From 3.6 base64.py
# Bug was handling "and" condition in the presense of POP_JUMP_IF_FALSE
# locations
def _85encode(foldnuls, words):
return ['z' if foldnuls and word
else 'y'
for word in words]