Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 18.119.132.80
from twisted.python.compat import unicode
def encode_if_needed(value):
"""
A small helper to decode unicode to utf-8 if needed.
"""
if isinstance(value, unicode):
value = value.encode("utf-8")
return value
def encode_values(dictionary):
"""
Encode values of the given C{dictionary} with utf-8 and surrogateescape.
"""
_dict = dictionary.copy()
for key, val in _dict.items():
if isinstance(val, unicode):
_dict[key] = val.encode("utf-8", "surrogateescape")
return _dict
|