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.
1 parent a5e6fec commit cf607e0Copy full SHA for cf607e0
1 file changed
python/private/stage2_bootstrap_template.py
@@ -80,6 +80,7 @@ def get_build_data(self):
80
exc.add_note(f"exists: {os.path.exists(path)}")
81
exc.add_note(f"lexists: {os.path.lexists(path)}")
82
exc.add_note(f"islink: {os.path.islink(path)}")
83
+ exc.add_note(f"isjunction: {os.path.isjunction(path)}")
84
can_read = os.access(path, os.R_OK)
85
exc.add_note(f"readable: {can_read}")
86
raise
0 commit comments