python-exercises/trickyscope.py

10 lines
185 B
Python
Raw Normal View History

2017-11-02 02:51:11 +01:00
from __future__ import print_function
class TrickyScope:
a = 1
b = [a for i in range(1)]
# Does not work with Python 3:
print(type(TrickyScope.b))
assert TrickyScope.b == [1]