diff options
Diffstat (limited to 'setuptools/tests/textwrap.py')
-rw-r--r-- | setuptools/tests/textwrap.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/setuptools/tests/textwrap.py b/setuptools/tests/textwrap.py new file mode 100644 index 00000000..5e39618d --- /dev/null +++ b/setuptools/tests/textwrap.py @@ -0,0 +1,6 @@ +import textwrap + + +def DALS(s): + "dedent and left-strip" + return textwrap.dedent(s).lstrip() |