We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 82af78f + 29be940 commit 66f1371Copy full SHA for 66f1371
1 file changed
doc/env.md
@@ -4,6 +4,18 @@
4
5
※ Change to the IP address (v4) specified by your WSL2
6
7
+#### Check python's parent process ID at startup
8
+
9
+```markdown
10
+import os
11
12
+# Get parent process of python
13
+pid = os.getppid()
14
15
+# Need to check at startup
16
+print(f"Parent Process ID: {pid}")
17
+```
18
19
> python -m debugpy --wait-for-client --listen 5678 facematch.py ${@:2}
20
21
※ Windows environment
@@ -18,7 +30,7 @@
30
31
> git clone https://github.com/takkii/PythonSettings.git
32
-#### ビルドシステム追加
33
+#### new Build System / ビルドシステム追加
22
34
23
35
> Python3.sublime-build
24
36
@@ -116,4 +128,3 @@
116
128
],
117
129
}
118
130
```
119
-
0 commit comments