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

(cherry picked from commit e8b6b39ff7)

Co-authored-by: Beomsoo Kim <beoms424@gmail.com>
This commit is contained in:
Miss Islington (bot) 2025-01-05 00:01:03 +01:00 committed by GitHub
parent 5ed2b7649e
commit b2bacbbea3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2306,7 +2306,6 @@ def __reduce__(self):
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