diff options
| author | Thomas Grainger <tagrain@gmail.com> | 2021-07-18 09:27:21 +0100 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-09-04 12:14:35 -0400 |
| commit | ca296ca8663a376f3c36c9f8fd86b10ba81366c2 (patch) | |
| tree | 651ddc60721245c136be867432039509bc06e4c1 /setuptools/tests/__init__.py | |
| parent | d989cdb36f50785d23b07939ba8b4fc2b68cf02a (diff) | |
| download | python-setuptools-git-ca296ca8663a376f3c36c9f8fd86b10ba81366c2.tar.gz | |
remove lib2to3 usage
Diffstat (limited to 'setuptools/tests/__init__.py')
| -rw-r--r-- | setuptools/tests/__init__.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/setuptools/tests/__init__.py b/setuptools/tests/__init__.py index a7a2112f..564adf2b 100644 --- a/setuptools/tests/__init__.py +++ b/setuptools/tests/__init__.py @@ -3,11 +3,8 @@ import locale import pytest -__all__ = ['fail_on_ascii', 'ack_2to3'] +__all__ = ['fail_on_ascii'] is_ascii = locale.getpreferredencoding() == 'ANSI_X3.4-1968' fail_on_ascii = pytest.mark.xfail(is_ascii, reason="Test fails in this locale") - - -ack_2to3 = pytest.mark.filterwarnings('ignore:2to3 support is deprecated') |
