Let's say I have the following class in Python:
class MyClass():
cls_att = []
Now, in one of the requests I'm doing the following:
MyClass.cls_att.append('a')
If immediately after this 'append', another request will get the attribute:
lst = MyClass.cls_att
What they will get in 'lst'? is it empty list or ['a']?