Instead of the verbose 'self' I personally favour the
concise '_' in
class methods, e.g.:
class Foo:
def __init__(_):
_.bar = "bar"
def __repr__(_):
return _.bar
Since 'self' or '_' is a purely internal class issue
(never exposed to
the outside world) wouldn't it be nice to make it a
configuration option
in pyut?
Kind regards,
Henk Jansen