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

Method func_end

Parser/asdl_c.py:2056–2065  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2054 self.emit("}", 1)
2055
2056 def func_end(self):
2057 self.emit("Py_LeaveRecursiveCall();", 1)
2058 self.emit("return result;", 1)
2059 self.emit("failed:", 0)
2060 self.emit("Py_LeaveRecursiveCall();", 1)
2061 self.emit("Py_XDECREF(value);", 1)
2062 self.emit("Py_XDECREF(result);", 1)
2063 self.emit("return NULL;", 1)
2064 self.emit("}", 0)
2065 self.emit("", 0)
2066
2067 def visitSum(self, sum, name):
2068 if is_simple(sum):

Callers 2

visitSumMethod · 0.95
visitProductMethod · 0.95

Calls 1

emitMethod · 0.95

Tested by

no test coverage detected