Let us walk on the 3-isogeny graph
Loading...
Searching...
No Matches
pip._internal.utils.datetime Namespace Reference

Functions

bool today_is_later_than (int year, int month, int day)
 

Detailed Description

For when pip wants to check the date or time.

Function Documentation

◆ today_is_later_than()

bool today_is_later_than ( int  year,
int  month,
int  day 
)

Definition at line 7 of file datetime.py.

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
for i

References i.