| 1239 | } |
| 1240 | |
| 1241 | void VariableAccessed(PyObject* v) { |
| 1242 | if (watch_accessed_variables_) { |
| 1243 | WatchVariable(v); |
| 1244 | } |
| 1245 | } |
| 1246 | |
| 1247 | void WatchVariable(PyObject* v) { |
| 1248 | tensorflow::Safe_PyObjectPtr handle(PyObject_GetAttrString(v, "handle")); |
no outgoing calls
no test coverage detected