MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / __pop_params

Method __pop_params

pydevd_attach_to_process/winappdbg/breakpoint.py:1326–1337  ·  view source on GitHub ↗

Forgets the arguments tuple for the last call to the hooked function from this thread. @type tid: int @param tid: Thread global ID.

(self, tid)

Source from the content-addressed store, hash-verified

1324 self.__paramStack[tid] = stack
1325
1326 def __pop_params(self, tid):
1327 """
1328 Forgets the arguments tuple for the last call to the hooked function
1329 from this thread.
1330
1331 @type tid: int
1332 @param tid: Thread global ID.
1333 """
1334 stack = self.__paramStack[tid]
1335 stack.pop()
1336 if not stack:
1337 del self.__paramStack[tid]
1338
1339 def get_params(self, tid):
1340 """

Callers 3

__call__Method · 0.95
__postCallAction_hwbpMethod · 0.95

Calls 1

popMethod · 0.80

Tested by

no test coverage detected