Use of a replacement to StringIO for managing encoding problems while marchalling Python objects.

This commit is contained in:
Gaetan Delannay 2010-02-02 16:25:10 +01:00
parent 36a740ed7e
commit 160c4960da
2 changed files with 30 additions and 20 deletions

View file

@ -37,6 +37,20 @@ class UnmarshalledFile:
self.content = '' # The binary content of the file of a file object
self.size = 0 # The length of the file in bytes.
class UnicodeBuffer:
'''With StringIO class, I have tons of encoding problems. So I define a
similar class here, that uses an internal unicode buffer.'''
def __init__(self):
self.buffer = u''
def write(self, s):
if s == None: return
if isinstance(s, unicode):
self.buffer += s
elif isinstance(s, str):
self.buffer += s.decode('utf-8')
else:
self.buffer += unicode(s)
# ------------------------------------------------------------------------------
class Dummy: pass
# ------------------------------------------------------------------------------