textwrap.py 146 B

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