Consider this python code
``` class example: def __init__(self): self.hello = "Hello" def world(self): return "World !"
e = example() print(e.hello) print(e.world()) ``` I am using a Tango color scheme and currently all of these
``` e = example() e.hello e.world() ``` have the same color (ie white) in geany. It would be nice if we get different colors for objects,methods and attributes.