[3.12] gh-127553: Remove outdated TODO comment in _pydatetime (GH-127564) (#128501)

(cherry picked from commit e8b6b39ff7)

Co-authored-by: Beomsoo Kim <beoms424@gmail.com>
This commit is contained in:
Miss Islington (bot) 2025-01-04 23:55:24 +01:00 committed by GitHub
parent e1a20910dc
commit 06e4173393
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2313,7 +2313,6 @@ datetime.resolution = timedelta(microseconds=1)
def _isoweek1monday(year):
# Helper to calculate the day number of the Monday starting week 1
# XXX This could be done more efficiently
THURSDAY = 3
firstday = _ymd2ord(year, 1, 1)
firstweekday = (firstday + 6) % 7 # See weekday() above