Skip to content

Commit

Permalink
Revert "Add workaround for pypy/pypy#4021."
Browse files Browse the repository at this point in the history
This reverts commit 1fb888b.
  • Loading branch information
jaraco committed Dec 25, 2023
1 parent aa7fcfe commit eeffa44
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,3 @@ def published_projects(monkeypatch):
'PROJECTS_LIST_URL',
'https://raw.githubusercontent.com/jaraco/dotfiles/main/projects.txt',
)


@pytest.fixture(autouse=True)
def workaround_pypy_4021(monkeypatch):
import importlib
import platform

if platform.python_implementation() != 'PyPy':
return
ssl = importlib.import_module('_cffi_ssl._stdssl')
monkeypatch.setattr(ssl, 'print', lambda *args: None, raising=False)

0 comments on commit eeffa44

Please sign in to comment.