summaryrefslogtreecommitdiff
path: root/dev-python/bleach/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-11-25 22:39:15 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-11-25 22:39:15 +0000
commitd934827bf44b7cfcf6711964418148fa60877668 (patch)
tree0625f358789b5e015e49db139cc1dbc9be00428f /dev-python/bleach/files
parent2e34d110f164bf74d55fced27fe0000201b3eec5 (diff)
gentoo resync : 25.11.2020
Diffstat (limited to 'dev-python/bleach/files')
-rw-r--r--dev-python/bleach/files/bleach-3.1.5-py39.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-python/bleach/files/bleach-3.1.5-py39.patch b/dev-python/bleach/files/bleach-3.1.5-py39.patch
deleted file mode 100644
index ce1296236b6d..000000000000
--- a/dev-python/bleach/files/bleach-3.1.5-py39.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-diff --git a/tests/test_clean.py b/tests/test_clean.py
-index 133cd82..4dcb9f4 100644
---- a/tests/test_clean.py
-+++ b/tests/test_clean.py
-@@ -597,31 +597,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>'
-- ),
-
- # Disallow implicit http if disallowed
- (