summaryrefslogtreecommitdiff
path: root/dev-python/bleach
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-09-07 03:05:50 -0500
committerroot <root@alpha.trunkmasters.com>2026-09-07 03:05:50 -0500
commit8453817910bc2afbb7ab1fbf61c3f06fb7320f35 (patch)
tree3d107194f4fc4d247ed6c21875e9dff4562e22e1 /dev-python/bleach
parente3ac4a99dbb849deb8dd15df4be98e6e14d55ab5 (diff)
downloadbaldeagleos-repo-8453817910bc2afbb7ab1fbf61c3f06fb7320f35.tar.gz
baldeagleos-repo-8453817910bc2afbb7ab1fbf61c3f06fb7320f35.tar.xz
baldeagleos-repo-8453817910bc2afbb7ab1fbf61c3f06fb7320f35.zip
Adding metadata
Diffstat (limited to 'dev-python/bleach')
-rw-r--r--dev-python/bleach/files/bleach-6.0.0-py39.patch48
1 files changed, 0 insertions, 48 deletions
diff --git a/dev-python/bleach/files/bleach-6.0.0-py39.patch b/dev-python/bleach/files/bleach-6.0.0-py39.patch
deleted file mode 100644
index 02ecb614c8b9..000000000000
--- a/dev-python/bleach/files/bleach-6.0.0-py39.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From d6d734f6fbeee2c091212d42e3ea730a1230aad5 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org>
-Date: Tue, 24 Jan 2023 07:35:45 +0100
-Subject: [PATCH] Remove tests broken by py3.9
-
----
- tests/test_clean.py | 15 ---------------
- 1 file changed, 15 deletions(-)
-
-diff --git a/tests/test_clean.py b/tests/test_clean.py
-index 73946a1..f798a15 100644
---- a/tests/test_clean.py
-+++ b/tests/test_clean.py
-@@ -551,31 +551,16 @@ def test_attributes_list():
- {"protocols": {"http"}},
- '<a href="example.com">valid</a>',
- ),
-- (
-- '<a href="example.com:8000">valid</a>',
-- {"protocols": {"http"}},
-- '<a href="example.com:8000">valid</a>',
-- ),
- (
- '<a href="localhost">valid</a>',
- {"protocols": {"http"}},
- '<a href="localhost">valid</a>',
- ),
-- (
-- '<a href="localhost:8000">valid</a>',
-- {"protocols": {"http"}},
-- '<a href="localhost:8000">valid</a>',
-- ),
- (
- '<a href="192.168.100.100">valid</a>',
- {"protocols": {"http"}},
- '<a href="192.168.100.100">valid</a>',
- ),
-- (
-- '<a href="192.168.100.100:8000">valid</a>',
-- {"protocols": {"http"}},
-- '<a href="192.168.100.100:8000">valid</a>',
-- ),
- pytest.param(
- *(
- '<a href="192.168.100.100:8000/foo#bar">valid</a>',
---
-2.39.1
-