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
4
import
datetime
5
6
7
def
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
pip._internal.utils.datetime.today_is_later_than
bool today_is_later_than(int year, int month, int day)
Definition
datetime.py:7
i
for i
Definition
prime_search.m:10
venv
lib
python3.12
site-packages
pip
_internal
utils
datetime.py
Generated by
1.9.8