(*args, **kwargs)
| 2680 | @support.run_with_tz('MSK-03') # Something east of Greenwich |
| 2681 | def test_microsecond_rounding(self): |
| 2682 | def utcfromtimestamp(*args, **kwargs): |
| 2683 | with self.assertWarns(DeprecationWarning): |
| 2684 | return self.theclass.utcfromtimestamp(*args, **kwargs) |
| 2685 | |
| 2686 | for fts in [self.theclass.fromtimestamp, |
| 2687 | utcfromtimestamp]: |
no test coverage detected