(*args, **kwargs)
| 2729 | @support.run_with_tz('MSK-03') # Something east of Greenwich |
| 2730 | def test_microsecond_rounding(self): |
| 2731 | def utcfromtimestamp(*args, **kwargs): |
| 2732 | with self.assertWarns(DeprecationWarning): |
| 2733 | return self.theclass.utcfromtimestamp(*args, **kwargs) |
| 2734 | |
| 2735 | for fts in [self.theclass.fromtimestamp, |
| 2736 | utcfromtimestamp]: |
no test coverage detected