One thing I noticed right away with Colony's codebase is that it has a
lot of comments which are completely unnecessary and actually more of
a distraction rather than helpful
http://goo.gl/OM9GQ
Example:
... /colony/colony/base/plugin_system.py
class Event
def is_event_or_sub_event(self, event)
...
# returns true <--- really? (that's
just one example)
...
I'd fire something like this sed -i 's?# returns true??g' * at the
codebase to rid of all that trivia cruft. We're all smart enough to
read/understand the codebase so let's nuke those kinds of comments :)