File tree Expand file tree Collapse file tree 3 files changed +571
-12
lines changed Expand file tree Collapse file tree 3 files changed +571
-12
lines changed Original file line number Diff line number Diff line change @@ -239,13 +239,9 @@ def test_file_attribute_constants(self):
239
239
class TestFilemodeCStat (TestFilemode , unittest .TestCase ):
240
240
statmod = c_stat
241
241
242
- # TODO: RUSTPYTHON
243
- @unittest .expectedFailure
244
242
def test_devices (self ):
245
243
super ().test_devices ()
246
244
247
- # TODO: RUSTPYTHON
248
- @unittest .expectedFailure
249
245
def test_directory (self ):
250
246
super ().test_directory ()
251
247
@@ -254,23 +250,15 @@ def test_directory(self):
254
250
def test_file_attribute_constants (self ):
255
251
super ().test_file_attribute_constants ()
256
252
257
- # TODO: RUSTPYTHON
258
- @unittest .expectedFailure
259
253
def test_link (self ):
260
254
super ().test_link ()
261
255
262
- # TODO: RUSTPYTHON
263
- @unittest .expectedFailure
264
256
def test_mode (self ):
265
257
super ().test_mode ()
266
258
267
- # TODO: RUSTPYTHON
268
- @unittest .expectedFailure
269
259
def test_module_attributes (self ):
270
260
super ().test_module_attributes ()
271
261
272
- # TODO: RUSTPYTHON
273
- @unittest .expectedFailure
274
262
def test_socket (self ):
275
263
super ().test_socket ()
276
264
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ mod operator;
14
14
// TODO: maybe make this an extension module, if we ever get those
15
15
// mod re;
16
16
mod sre;
17
+ mod stat;
17
18
mod string;
18
19
#[ cfg( feature = "compiler" ) ]
19
20
mod symtable;
@@ -89,6 +90,7 @@ pub fn get_module_inits() -> StdlibMap {
89
90
"_operator" => operator:: make_module,
90
91
"_signal" => signal:: make_module,
91
92
"_sre" => sre:: make_module,
93
+ "_stat" => stat:: make_module,
92
94
"_string" => string:: make_module,
93
95
"time" => time:: make_module,
94
96
"_typing" => typing:: make_module,
You can’t perform that action at this time.
0 commit comments