Skip to content
Snippets Groups Projects
Commit 93b5c540 authored by Yuya Nishihara's avatar Yuya Nishihara
Browse files

templatefilters: drop old jsonescape() function

It's been superseded by encoding.jsonescape(paranoid=True).
parent d4419c01
No related branches found
No related tags found
No related merge requests found
......@@ -215,23 +215,6 @@
else:
raise TypeError('cannot encode type %s' % obj.__class__.__name__)
def _uescape(c):
if 0x20 <= ord(c) < 0x80:
return c
else:
return '\\u%04x' % ord(c)
_escapes = [
('\\', '\\\\'), ('"', '\\"'), ('\t', '\\t'), ('\n', '\\n'),
('\r', '\\r'), ('\f', '\\f'), ('\b', '\\b'),
('<', '\\u003c'), ('>', '\\u003e'), ('\0', '\\u0000')
]
def jsonescape(s):
for k, v in _escapes:
s = s.replace(k, v)
return ''.join(_uescape(c) for c in s)
def lower(text):
""":lower: Any text. Converts the text to lowercase."""
return encoding.lower(text)
......
......@@ -44,17 +44,4 @@
0 97e5f848f0936960273bbf75be6388cd0350a32b -1 0000000000000000000000000000000000000000
-1 0000000000000000000000000000000000000000 -1 0000000000000000000000000000000000000000
Fuzzing the unicode escaper to ensure it produces valid data
#if hypothesis
>>> from hypothesishelpers import *
>>> import mercurial.templatefilters as tf
>>> import json
>>> @check(st.text().map(lambda s: s.encode('utf-8')))
... def testtfescapeproducesvalidjson(text):
... json.loads('"' + tf.jsonescape(text) + '"')
#endif
$ cd ..
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment