(dt_list, tzinfo)
| 1048 | |
| 1049 | # Define a tz_convert function that converts a list to a new timezone. |
| 1050 | def tz_convert(dt_list, tzinfo): |
| 1051 | return [d.astimezone(tzinfo) for d in dt_list] |
| 1052 | |
| 1053 | _test_date2num_dst(date_range, tz_convert) |
| 1054 |
no test coverage detected
searching dependent graphs…