Bug 1720951 - Removed unused 'ensure_bytes()' and 'ensure_unicode()' from runxpcshelltests.py r=mhentges

Since the functions 'ensure_bytes()' and 'ensure_unicode()' were unused, hence removed.

Differential Revision: https://phabricator.services.mozilla.com/D120600
This commit is contained in:
surajeet310 2021-07-22 22:25:30 +00:00
Родитель c734740c1e
Коммит 76ad0a69de
1 изменённых файлов: 0 добавлений и 12 удалений

Просмотреть файл

@ -120,18 +120,6 @@ def cleanup_encoding(s):
return _cleanup_encoding_re.sub(_cleanup_encoding_repl, s)
def ensure_bytes(value, encoding="utf-8"):
if isinstance(value, six.text_type):
return value.encode(encoding)
return value
def ensure_unicode(value, encoding="utf-8"):
if isinstance(value, six.binary_type):
return value.decode(encoding)
return value
""" Control-C handling """
gotSIGINT = False