estrutura de python como C
class test(object):
__slots__ = ['a', 'next']
x = test()
x.next = x
x.a = 42
Obnoxious Oystercatcher
class test(object):
__slots__ = ['a', 'next']
x = test()
x.next = x
x.a = 42