From 0429cca8549baf4dc4c27b46dddbec4727b3ce8909300d02192b6da471ea34f9 Mon Sep 17 00:00:00 2001 From: Steve Kowalik Date: Fri, 23 Jan 2026 15:33:02 +1100 Subject: [PATCH] Actually delete the patch --- support-python-313.patch | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 support-python-313.patch diff --git a/support-python-313.patch b/support-python-313.patch deleted file mode 100644 index 5c262a5..0000000 --- a/support-python-313.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 20ef83970b24cd53ce7f5bf952360d8b99a0b7de Mon Sep 17 00:00:00 2001 -From: Martin Hoyer -Date: Tue, 7 May 2024 15:55:07 +0200 -Subject: [PATCH] Remove crypt lib from testing - ---- - test/test_modules.py | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/test/test_modules.py b/test/test_modules.py -index 23a1f2f2..15416344 100644 ---- a/test/test_modules.py -+++ b/test/test_modules.py -@@ -10,7 +10,6 @@ - # See the License for the specific language governing permissions and - # limitations under the License. - --import crypt - import datetime - import os - import re -@@ -257,7 +256,8 @@ def test_nonexistent_user(host): - def test_current_user(host): - assert host.user().name == "root" - pw = host.user().password -- assert crypt.crypt("foo", pw) == pw -+ assert pw.startswith("$") -+ assert len(pw) == 73 - - - def test_group(host):