Remove test file.
This commit is contained in:
parent
44df96e9aa
commit
385e1dda20
1 changed files with 0 additions and 21 deletions
21
fas/fas/t.py
21
fas/fas/t.py
|
@ -1,21 +0,0 @@
|
|||
class test:
|
||||
__var = 'Uninitalized'
|
||||
|
||||
def __getattr__(self, attr):
|
||||
return self.__getattr__(attr)
|
||||
|
||||
def __setattr__(self, attr, value):
|
||||
self.__dict__[attr] = value
|
||||
|
||||
@classmethod
|
||||
def start(cls):
|
||||
self = cls()
|
||||
return self
|
||||
|
||||
p = test.start()
|
||||
p.var='first'
|
||||
t = test.start()
|
||||
t.var='second'
|
||||
|
||||
print p.var
|
||||
print t.var
|
Loading…
Add table
Add a link
Reference in a new issue