Flush the compression object.
(self)
| 588 | self.file.write(compressed) |
| 589 | |
| 590 | def _flush(self): |
| 591 | """Flush the compression object.""" |
| 592 | |
| 593 | if self.compressobj is not None: |
| 594 | compressed = self.compressobj.flush() |
| 595 | self.file.write(compressed) |
| 596 | self.compressobj = None |
| 597 | |
| 598 | |
| 599 | def _get_pdf_charprocs(font_path, glyph_indices): |