summaryrefslogtreecommitdiff
path: root/Lib/test/test_difflib.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-12-29 17:42:05 +0200
committerGitHub <noreply@github.com>2018-12-29 17:42:05 +0200
commit13514f594de772d0e870ff680529d402b2ba8866 (patch)
tree42e1290e446d69815b65dc95831cd681db345e59 /Lib/test/test_difflib.py
parent78de01198b047347abc5e458851bb12c48429e24 (diff)
downloadcpython-git-revert-11341-bpo35603.tar.gz
Revert "bpo-35603: Escape table header of make_table output that can cause potential XSS. (GH-11341)"revert-11341-bpo35603
This reverts commit 78de01198b047347abc5e458851bb12c48429e24.
Diffstat (limited to 'Lib/test/test_difflib.py')
-rw-r--r--Lib/test/test_difflib.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/Lib/test/test_difflib.py b/Lib/test/test_difflib.py
index 63ebdb0dc8..745ccbd665 100644
--- a/Lib/test/test_difflib.py
+++ b/Lib/test/test_difflib.py
@@ -238,15 +238,6 @@ class TestSFpatches(unittest.TestCase):
with open(findfile('test_difflib_expect.html')) as fp:
self.assertEqual(actual, fp.read())
- def test_make_table_escape_table_header(self):
- html_diff = difflib.HtmlDiff()
- output = html_diff.make_table(patch914575_from1.splitlines(),
- patch914575_to1.splitlines(),
- fromdesc='<from>',
- todesc='<to>')
- self.assertIn('&lt;from&gt;', output)
- self.assertIn('&lt;to&gt;', output)
-
def test_recursion_limit(self):
# Check if the problem described in patch #1413711 exists.
limit = sys.getrecursionlimit()