(self)
| 220 | return CodeProxy(self._conn, self._oid, cid) |
| 221 | |
| 222 | def _get_f_globals(self): |
| 223 | did = self._conn.remotecall(self._oid, "frame_globals", |
| 224 | (self._fid,), {}) |
| 225 | return self._get_dict_proxy(did) |
| 226 | |
| 227 | def _get_f_locals(self): |
| 228 | did = self._conn.remotecall(self._oid, "frame_locals", |
no test coverage detected