(self)
| 216 | (self._fid, name), {}) |
| 217 | |
| 218 | def _get_f_code(self): |
| 219 | cid = self._conn.remotecall(self._oid, "frame_code", (self._fid,), {}) |
| 220 | return CodeProxy(self._conn, self._oid, cid) |
| 221 | |
| 222 | def _get_f_globals(self): |
| 223 | did = self._conn.remotecall(self._oid, "frame_globals", |
no test coverage detected