OK, I've put the __future__ imports back in.
Is there any reason why some from module import x, y, z statements put the x, y, z list in brackets but some don't? Is this significant or just personal preference?
Also sometimes we see code like:
action_spec = ('Normalise ePub', None, 'Normalise ePub after markdown conversion', None)
but sometimes action_spec parameters are coded like:
action_spec = (_('Normalise ePub'), None, _('Normalise ePub after calibre conversion'), None)
What to the _( ) brackets indicate?
|