Store verbatim PDF command content for later inclusion in the stream.
| 426 | |
| 427 | |
| 428 | class Verbatim: |
| 429 | """Store verbatim PDF command content for later inclusion in the stream.""" |
| 430 | def __init__(self, x): |
| 431 | self._x = x |
| 432 | |
| 433 | def pdfRepr(self): |
| 434 | return self._x |
| 435 | |
| 436 | |
| 437 | class Op(Enum): |
no outgoing calls
no test coverage detected
searching dependent graphs…