summaryrefslogtreecommitdiff
path: root/dev-python/bleach
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-02-26 08:18:51 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-02-26 08:18:51 +0000
commit7bcc6023d63e812f9210ed3a92cf2271fbf9db15 (patch)
tree0620715309da00f3955017607bf3b9d8d87519c5 /dev-python/bleach
parent4e0f4f10721b6dbe5b2fd4a0369d85b83043a62c (diff)
downloadbaldeagleos-repo-7bcc6023d63e812f9210ed3a92cf2271fbf9db15.tar.gz
baldeagleos-repo-7bcc6023d63e812f9210ed3a92cf2271fbf9db15.tar.xz
baldeagleos-repo-7bcc6023d63e812f9210ed3a92cf2271fbf9db15.zip
Adding metadata
Diffstat (limited to 'dev-python/bleach')
-rw-r--r--dev-python/bleach/files/bleach-4.1.0-py39.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-python/bleach/files/bleach-4.1.0-py39.patch b/dev-python/bleach/files/bleach-4.1.0-py39.patch
deleted file mode 100644
index 8460be601a23..000000000000
--- a/dev-python/bleach/files/bleach-4.1.0-py39.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-diff --git a/tests/test_clean.py b/tests/test_clean.py
-index 8f816f9..2be6f7b 100644
---- a/tests/test_clean.py
-+++ b/tests/test_clean.py
-@@ -525,31 +525,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>',