(self, file)
| 2396 | class GraphicsContextPdf(GraphicsContextBase): |
| 2397 | |
| 2398 | def __init__(self, file): |
| 2399 | super().__init__() |
| 2400 | self._fillcolor = (0.0, 0.0, 0.0) |
| 2401 | self._effective_alphas = (1.0, 1.0) |
| 2402 | self.file = file |
| 2403 | self.parent = None |
| 2404 | |
| 2405 | def __repr__(self): |
| 2406 | d = dict(self.__dict__) |