python-paramiko/remove-icecream-dep.patch
Robert Schweikert cab21216e1 - Update to 3.5.0:
* [Feature] #982: (via #2444, which was a rebase of #2157) 
    Add support for AES-GCM encryption ciphers (128 and 256 bit variants). 
    Thanks to Alex Gaynor for the report (& for cryptography review), 
    Shen Cheng for the original PR, and Chris Mason for the updated PR; 
    plus as usual to everyone who tested the patches and reported their results!
    This functionality has been tested in client mode against OpenSSH 9.0, 9.2, 
    and 9.6, as well as against a number of proprietary appliance SSH servers.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-paramiko?expand=0&rev=125
2024-11-20 14:08:17 +00:00

28 lines
818 B
Diff

Index: paramiko-3.3.1/tests/conftest.py
===================================================================
--- paramiko-3.3.1.orig/tests/conftest.py
+++ paramiko-3.3.1/tests/conftest.py
@@ -4,7 +4,7 @@ import shutil
import threading
from pathlib import Path
-from invoke.vendor.lexicon import Lexicon
+from lexicon import Lexicon
import pytest
from paramiko import (
@@ -22,13 +22,6 @@ from ._loop import LoopSocket
from ._stub_sftp import StubServer, StubSFTPServer
from ._util import _support
-from icecream import ic, install as install_ic
-
-
-# Better print() for debugging - use ic()!
-install_ic()
-ic.configureOutput(includeContext=True)
-
# Perform logging by default; pytest will capture and thus hide it normally,
# presenting it on error/failure. (But also allow turning it off when doing