Closed tjduigna closed 8 years ago
Experiencing the following bug with a minimal working example:
t = exa.Editor('') t.meta['name'] = 'main' t.meta
returns
{'name': 'main'}
as expected. Then creating a new instance
b = exa.Editor('') b.meta['name'] = 'face' b.meta
{'name': 'face'}
also as expected. But then:
t.meta
as though meta is a class-level attribute of the Editor, not an instance attribute.
Experiencing the following bug with a minimal working example:
returns
as expected. Then creating a new instance
returns
also as expected. But then:
returns
as though meta is a class-level attribute of the Editor, not an instance attribute.