def _likebuffer(buf): if type(buf) is buffer or type(buf) is bytearray or type(buf) is bytes or isinstance(buf, bytes): return buf else: return buffer(buf)