This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def getEquivDate(d, y): | |
| """Returns the date during another year that has the same ISO week and weekday as the date provided. | |
| Args: | |
| d (datetime.date): The date you want to get the equivalent of. | |
| y (int): The year that you want to get the equivalent date for. | |
| Returns: | |
| datetime.date | |