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)
| 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 | """ |
no test coverage detected