aboutsummaryrefslogtreecommitdiff
path: root/setuptools/tests/textwrap.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/tests/textwrap.py')
-rw-r--r--setuptools/tests/textwrap.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/setuptools/tests/textwrap.py b/setuptools/tests/textwrap.py
new file mode 100644
index 0000000..5cd9e5b
--- /dev/null
+++ b/setuptools/tests/textwrap.py
@@ -0,0 +1,8 @@
+from __future__ import absolute_import
+
+import textwrap
+
+
+def DALS(s):
+ "dedent and left-strip"
+ return textwrap.dedent(s).lstrip()