aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/tests/test_dist_info.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/tests/test_dist_info.py')
-rw-r--r--setuptools/tests/test_dist_info.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/setuptools/tests/test_dist_info.py b/setuptools/tests/test_dist_info.py
index eab17335..6d0ab587 100644
--- a/setuptools/tests/test_dist_info.py
+++ b/setuptools/tests/test_dist_info.py
@@ -3,15 +3,12 @@
import os
import shutil
import tempfile
-import textwrap
import pytest
import pkg_resources
+from .textwrap import DALS
-def DALS(s):
- "dedent and left-strip"
- return textwrap.dedent(s).lstrip()
class TestDistInfo: