Let us walk on the 3-isogeny graph
Loading...
Searching...
No Matches
datetime.py
Go to the documentation of this file.
1"""For when pip wants to check the date or time.
2"""
3
4import datetime
5
6
7def today_is_later_than(year: int, month: int, day: int) -> bool:
8 today = datetime.date.today()
9 given = datetime.date(year, month, day)
10
11 return today > given
bool today_is_later_than(int year, int month, int day)
Definition datetime.py:7
for i