textwrap.py 98 B

123456
  1. import textwrap
  2. def DALS(s):
  3. "dedent and left-strip"
  4. return textwrap.dedent(s).lstrip()