python (3.11.7)

(root)/
lib/
python3.11/
site-packages/
pip/
_internal/
utils/
datetime.py
       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