Should we always use tuples when instantiating them only once? E.g.
if abc in ('e', 'f'):
instead of
if abc in ['e', 'f']:

They appear to be slightly faster sometimes.