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 4b2ed5c commit f42e26cCopy full SHA for f42e26c
virtualenvwrapper/user_scripts.py
@@ -51,7 +51,16 @@ def run_global(script_name, *args):
51
return
52
53
54
-PERMISSIONS = stat.S_IRWXU | stat.S_IRWXG | stat.S_IROTH | stat.S_IXOTH
+PERMISSIONS = (stat.S_IRWXU # read/write/execute, user
55
+ | stat.S_IRWXG # read/write/execute, group
56
+ | stat.S_IROTH # read, others
57
+ | stat.S_IXOTH) # execute, others
58
+PERMISSIONS_SOURCED = (
59
+ stat.S_IRUSR # read, user
60
+ | stat.S_IWUSR # write, user
61
+ | stat.S_IRGRP # read, group
62
+ | stat.S_IWGRP # write, group
63
+ | stat.S_IROTH) # read, others
64
65
66
GLOBAL_HOOKS = [
0 commit comments