def as_text(self): # type: () -> str buf = BIO.MemoryBuffer() m2.x509_req_print(buf.bio_ptr(), self.req) return util.py3str(buf.read_all())
def as_text(self): # type: () -> str buf = BIO.MemoryBuffer() m2.x509_req_print(buf.bio_ptr(), self.req) return six.ensure_text(buf.read_all())
def as_text(self): buf = BIO.MemoryBuffer() m2.x509_req_print(buf.bio_ptr(), self.req) return buf.read_all()