summaryrefslogtreecommitdiff
path: root/dev-python/manuel/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-04-12 00:33:29 +0100
committerV3n3RiX <venerix@koprulu.sector>2024-04-12 00:33:29 +0100
commit3a6d209caa07e3be8e8423251b70c8bbeeedb17f (patch)
treeaa94c255fa1bd982214ca518fb93d674cc253101 /dev-python/manuel/files
parent1f43daba2fbe6f53e67c63944941dc645657c5b3 (diff)
gentoo auto-resync : 12:04:2024 - 00:33:28
Diffstat (limited to 'dev-python/manuel/files')
-rw-r--r--dev-python/manuel/files/manuel-1.12.4-tests-python311.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/dev-python/manuel/files/manuel-1.12.4-tests-python311.patch b/dev-python/manuel/files/manuel-1.12.4-tests-python311.patch
deleted file mode 100644
index 5a6ef9dc3b7d..000000000000
--- a/dev-python/manuel/files/manuel-1.12.4-tests-python311.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-https://github.com/benji-york/manuel/pull/32
-
-From d9f12d03e39bb76e4bb3ba43ad51af6d3e9d45c0 Mon Sep 17 00:00:00 2001
-From: Matt Jolly <Matt.Jolly@footclan.ninja>
-Date: Mon, 6 Jun 2022 22:44:22 +1000
-Subject: [PATCH] Replace TextTestResult with TestResult for Py3.11
-
---- a/src/manuel/index.txt
-+++ b/src/manuel/index.txt
-@@ -211,10 +211,7 @@ When tests are run this way:
-
- >>> sys.stdout.writeln = lambda s: sys.stdout.write(s+'\n')
- >>> suite = loader.loadTestsFromTestCase(MyTest)
-- >>> result = suite.run(unittest.TextTestResult(sys.stdout, True, 3))
-- test1 (tests.MyTest) ... ok
-- test2 (tests.MyTest) ... ok
-- test3 (tests.MyTest) ... FAIL
-+ >>> result = suite.run(unittest.TestResult(True, 3))
-
- >>> for _, e in result.errors:
- ... print(e); print
-