We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c977026 commit 79830a8Copy full SHA for 79830a8
distutils/tests/test_sysconfig.py
@@ -8,7 +8,7 @@
8
import pytest
9
import jaraco.envs
10
import path
11
-from jaraco.text import trim
+from textwrap import dedent
12
13
import distutils
14
from distutils import sysconfig
@@ -19,6 +19,10 @@
19
from . import py37compat
20
21
22
+def trim(s):
23
+ return dedent(s).strip()
24
+
25
26
@pytest.mark.usefixtures('save_env')
27
class TestSysconfig:
28
def test_get_config_h_filename(self):
setup.cfg
@@ -40,7 +40,6 @@ testing =
40
pytest >= 7.4.3 #186
41
jaraco.envs>=2.4
42
jaraco.path
43
- jaraco.text
44
path
45
docutils
46
pyfakefs
0 commit comments