We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c17234 commit 759bbceCopy full SHA for 759bbce
1 file changed
news/1 Enhancements/907.md
@@ -0,0 +1,10 @@
1
+Add prelimnary support for remote debugging using the experimental debugger.
2
+Attach to a Python program after having imported `ptvsd` and enabling the debugger to attach as follows:
3
+```python
4
+import ptvsd
5
+ptvsd.enable_attach(('0.0.0.0', 5678))
6
+```
7
+Additional capabilities:
8
+* `ptvsd.break_into_debugger()` to break into the attached debugger.
9
+* `ptvsd.wait_for_attach(timeout)` to cause the program to wait untill a debugger attaches.
10
+* `ptvsd.is_attached()` to determine whether a debugger is attached to the program.
0 commit comments