(self)
| 225 | return self._get_dict_proxy(did) |
| 226 | |
| 227 | def _get_f_locals(self): |
| 228 | did = self._conn.remotecall(self._oid, "frame_locals", |
| 229 | (self._fid,), {}) |
| 230 | return self._get_dict_proxy(did) |
| 231 | |
| 232 | def _get_dict_proxy(self, did): |
| 233 | if did in self._dictcache: |
no test coverage detected