summaryrefslogtreecommitdiff
path: root/dev-python/bleach/files
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-10-22 00:46:48 +0200
committerMichał Górny <mgorny@gentoo.org>2020-10-22 00:50:15 +0200
commitfce82db14bc4be008fc10b040bf44d94304365cd (patch)
tree9e1023f2d34215fca5d637509c27fcfabe1896b6 /dev-python/bleach/files
parent09ef8895a95ff6fd2c6243e14b225af1c26bb172 (diff)
downloadgentoo-fce82db14bc4be008fc10b040bf44d94304365cd.tar.gz
gentoo-fce82db14bc4be008fc10b040bf44d94304365cd.tar.bz2
gentoo-fce82db14bc4be008fc10b040bf44d94304365cd.zip
dev-python/bleach: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
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
- (