BadPython.com
Submit Bad Python
Suggestion for
"Using custom getters and setters"
use a namedtuple
from collections import namedtuple MyClass = namedtuple('MyClass', ['x'])
Next Suggestion:
Use the @property decorator