Load the grammar tables from a pickle bytes object.
(self, pkl: bytes)
| 125 | self._update(d) |
| 126 | |
| 127 | def loads(self, pkl: bytes) -> None: |
| 128 | """Load the grammar tables from a pickle bytes object.""" |
| 129 | self._update(pickle.loads(pkl)) |
| 130 | |
| 131 | def copy(self: _P) -> _P: |
| 132 | """ |
no test coverage detected