Restores NumExpr object via `neObj = pickle.loads(pickledBytes)`
(self, state)
| 456 | return pickleDict |
| 457 | |
| 458 | def __setstate__(self, state): |
| 459 | ''' |
| 460 | Restores NumExpr object via `neObj = pickle.loads(pickledBytes)` |
| 461 | ''' |
| 462 | self.__dict__ = state |
| 463 | call_frame = sys._getframe(state['_stackDepth']) |
| 464 | self.local_dict = call_frame.f_locals |
| 465 | self._global_dict = call_frame.f_globals |
| 466 | |
| 467 | |
| 468 | def _assemble(self): |
nothing calls this directly
no outgoing calls
no test coverage detected