MCPcopy Index your code
hub / github.com/python/cpython / _getval

Method _getval

Lib/pdb.py:2102–2107  ·  view source on GitHub ↗
(self, arg)

Source from the content-addressed store, hash-verified

2100 do_rv = do_retval
2101
2102 def _getval(self, arg):
2103 try:
2104 return eval(arg, self.curframe.f_globals, self.curframe.f_locals)
2105 except:
2106 self._error_exc()
2107 raise
2108
2109 def _getval_except(self, arg, frame=None):
2110 try:

Callers 3

_msg_val_funcMethod · 0.95
do_sourceMethod · 0.95
do_whatisMethod · 0.95

Calls 1

_error_excMethod · 0.95

Tested by

no test coverage detected