From cf66bbce25e2631bc36d6edfd609705a53b6ef61 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Fri, 2 Jan 2015 10:41:41 -0500 Subject: Add omitted module. --- setuptools/tests/textwrap.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 setuptools/tests/textwrap.py (limited to 'setuptools/tests/textwrap.py') diff --git a/setuptools/tests/textwrap.py b/setuptools/tests/textwrap.py new file mode 100644 index 00000000..5cd9e5bc --- /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() -- cgit v1.2.3