Files
python-uncompyle6/test/simple_source/stmts/00_assign.py
2018-06-13 18:47:36 -04:00

9 lines
127 B
Python

# Tests:
# assign ::= expr store
# This code is RUNNABLE!
a = 'None'
b = None
c = 556
assert (a, b, c) == ('None', None, 556)