aboutsummaryrefslogtreecommitdiffstats
path: root/jython-tosca-parser/src/main/resources/Lib/site-packages/setuptools/tests/textwrap.py
blob: 5cd9e5bca8ee90fdc98cd8736d1e79fa5512045e (plain)
1
2
3
4
5
6
7
8
from __future__ import absolute_import

import textwrap


def DALS(s):
    "dedent and left-strip"
    return textwrap.dedent(s).lstrip()