This patches add compatibility for the forthcoming RobotFramework 5. Taken from: https://github.com/robotframework/SSHLibrary/pull/403. diff --git a/src/SSHLibrary/pythonforward.py b/src/SSHLibrary/pythonforward.py index 8b85997b7..607985cf4 100644 --- a/src/SSHLibrary/pythonforward.py +++ b/src/SSHLibrary/pythonforward.py @@ -1,9 +1,9 @@ import select import socket import threading -from robot.utils import platform +from robot.utils import PY2, WINDOWS from .logger import logger -if platform.PY2 and platform.WINDOWS: +if PY2 and WINDOWS: import win_inet_pton try: import SocketServer 292dc799c36e0c613a53f0e'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/substitute.scm
AgeCommit message (Expand)Author
2023-12-04substitute: Do not exit when failing to find a nar....Ludovic Courtès
2023-06-08substitute: Gracefully retry after failed partial downloads....Ludovic Courtès
2023-05-30substitute: If a server's nar URL is 404, try the next one(s)....Ludovic Courtès
2022-09-28substitute: Retry downloading when a nar is unavailable....Ludovic Courtès
2022-09-24substitute: Test behavior with unroutable substitute server addresses....Ludovic Courtès
2022-02-14publish: Do not sign the URL/Compression/FileSize narinfo fields....Ludovic Courtès
2021-04-09daemon: 'guix substitute' replies on FD 4....Ludovic Courtès
2021-01-16guix: Move narinfo code from substitute script to module....Christopher Baines
2020-12-19tests: Check the mtime and permissions of substituted items....Ludovic Courtès
2020-12-19daemon: Let 'guix substitute' perform hash checks....Ludovic Courtès
2020-12-08daemon: Run 'guix substitute --substitute' as an agent....Ludovic Courtès
2020-12-08daemon: Use 'Agent' to spawn 'guix substitute --query'....Ludovic Courtès
2020-08-24Use "guile-zlib" and "guile-lzlib" instead of (guix config)....Mathieu Othacehe
2019-11-27substitute: Make '%allow-unauthenticated-substitutes?' public....Ludovic Courtès
2019-06-02substitute: Select the best compression methods....Ludovic Courtès
2018-12-14substitute: Ignore irrelevant narinfo signatures....Ludovic Courtès
2018-09-04Switch to Guile-Gcrypt....Ludovic Courtès