Add a function to change output from a str to unicode
This commit is contained in:
parent
5d1e468bda
commit
d50089ca9f
1 changed files with 5 additions and 0 deletions
|
@ -241,3 +241,8 @@ def to_bytes(obj, encoding='utf-8', errors='replace', nonstring=None):
|
||||||
raise TypeError('nonstring value, %(param)s, is not set to a valid'
|
raise TypeError('nonstring value, %(param)s, is not set to a valid'
|
||||||
' action' % {'param': nonstring})
|
' action' % {'param': nonstring})
|
||||||
|
|
||||||
|
|
||||||
|
# force the return value of a function to be unicode. Use with partial to
|
||||||
|
# ensure that a filter will return unicode values.
|
||||||
|
def unicode_wrap(func, *args, **kwargs):
|
||||||
|
return to_unicode(func(*args, **kwargs), nonstring='passthru')
|
||||||
|
|
Loading…
Add table
Reference in a new issue