1from __future__ import absolute_import 2 3import textwrap 4 5 6def DALS(s): 7 "dedent and left-strip" 8 return textwrap.dedent(s).lstrip() 9