File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -132,10 +132,10 @@ mod stat {
132
132
#[ pyattr]
133
133
pub const S_IWUSR : Mode = 0o0200 ;
134
134
135
- #[ cfg( all( unix, not( target_os = "android" ) ) ) ]
135
+ #[ cfg( all( unix, not( target_os = "android" ) , not ( target_os = "redox" ) ) ) ]
136
136
#[ pyattr]
137
137
pub const S_IWRITE : Mode = libc:: S_IWRITE ;
138
- #[ cfg( any( not( unix) , target_os = "android" ) ) ]
138
+ #[ cfg( any( not( unix) , target_os = "android" , target_os = "redox" ) ) ]
139
139
#[ pyattr]
140
140
pub const S_IWRITE : Mode = 0o0200 ;
141
141
@@ -146,10 +146,10 @@ mod stat {
146
146
#[ pyattr]
147
147
pub const S_IXUSR : Mode = 0o0100 ;
148
148
149
- #[ cfg( all( unix, not( target_os = "android" ) ) ) ]
149
+ #[ cfg( all( unix, not( target_os = "android" ) , not ( target_os = "redox" ) ) ) ]
150
150
#[ pyattr]
151
151
pub const S_IEXEC : Mode = libc:: S_IEXEC ;
152
- #[ cfg( any( not( unix) , target_os = "android" ) ) ]
152
+ #[ cfg( any( not( unix) , target_os = "android" , target_os = "redox" ) ) ]
153
153
#[ pyattr]
154
154
pub const S_IEXEC : Mode = 0o0100 ;
155
155
You can’t perform that action at this time.
0 commit comments