You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ExceptionTraceback (mostrecentcalllast)
[<ipython-input-6-68c97bf397ec>](https://localhost:8080/#) in <cell line: 3>()1fromwatchpointsimportwatch2x=0---->3watch(x)
1frames
[/usr/local/lib/python3.10/dist-packages/watchpoints/watch.py](https://localhost:8080/#) in __call__(self, *args, **kwargs)25withself.set_lock:
26frame=inspect.currentframe().f_back--->27argnodes=getargnodes(frame)
28fornode, nameinargnodes:
29self.watch_list.append(
[/usr/local/lib/python3.10/dist-packages/watchpoints/util.py](https://localhost:8080/#) in getargnodes(frame)58m=re.match(r".*?\((.*)\)", line)
59ifnotm: # pragma: no cover--->60raiseException(f"Unable to locate watch line {line}")
61args= ["".join(s.strip().split()) forsinm.group(1).split(",")]
62try:
Exception: Unabletolocatewatchlinefromwatchpointsimportwatch
I think that it will be difficult to make watchpoints compatible to Google Colab and Jupyter Notebook, but I will be happy if watchpoints will be available on them.
The text was updated successfully, but these errors were encountered:
I tried watchpoints in Google Colab as follows:
but it raised the following exception:
I think that it will be difficult to make watchpoints compatible to Google Colab and Jupyter Notebook, but I will be happy if watchpoints will be available on them.
The text was updated successfully, but these errors were encountered: