utils.py
changeset 6689 b00f31b3b045
parent 6684 b8bd0ecced2e
child 6854 ffc982faa264
child 6913 ab85124dc0eb
equal deleted inserted replaced
6666:55a94beb521d 6689:b00f31b3b045
   199             return other._size == self._size and other._item == self._item
   199             return other._size == self._size and other._item == self._item
   200         return self[:] == other
   200         return self[:] == other
   201     def pop(self, i):
   201     def pop(self, i):
   202         self._size -= 1
   202         self._size -= 1
   203 
   203 
       
   204 
   204 class UStringIO(list):
   205 class UStringIO(list):
   205     """a file wrapper which automatically encode unicode string to an encoding
   206     """a file wrapper which automatically encode unicode string to an encoding
   206     specifed in the constructor
   207     specifed in the constructor
   207     """
   208     """
   208 
   209