We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 57408a2 + fea5b1f commit 8816d02Copy full SHA for 8816d02
1 file changed
ipykernel/debugger.py
@@ -426,7 +426,7 @@ def start(self):
426
if not self.debugpy_initialized:
427
tmp_dir = get_tmp_directory()
428
if not Path(tmp_dir).exists():
429
- Path(tmp_dir).mkdir(parents=True)
+ Path(tmp_dir).mkdir(mode=0o700, parents=True)
430
host, port = self.debugpy_client.get_host_port()
431
code = "import debugpy;"
432
code += 'debugpy.listen(("' + host + '",' + port + "))"
0 commit comments