def _stringify_iter(self): out = [] for i in range(self.length): temp = filter(lambda x: x in self.printable, self.s[i]) temp = temp.encode('ascii') out.append(temp) return out