(config)
| 113 | |
| 114 | test_value = {"graph_recursion_depth": -1} |
| 115 | def callback(config): |
| 116 | test_value["graph_recursion_depth"] = config.get("graph_recursion_depth") |
| 117 | config.set_callback("graph_recursion_depth", callback) |
| 118 | |
| 119 | config.set("graph_recursion_depth", config.get("graph_recursion_depth") - 1) |