https://github.com/python/cpython/commit/b2bacbbea3e770b61ecedc058a63c7c97a7f4851
commit: b2bacbbea3e770b61ecedc058a63c7c97a7f4851
branch: 3.13
author: Miss Islington (bot) <[email protected]>
committer: erlend-aasland <[email protected]>
date: 2025-01-04T23:01:03Z
summary:

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

(cherry picked from commit e8b6b39ff707378da654e15ccddde9c28cefdd30)

Co-authored-by: Beomsoo Kim <[email protected]>

files:
M Lib/_pydatetime.py

diff --git a/Lib/_pydatetime.py b/Lib/_pydatetime.py
index 34ccb2da13d0f3..e001bd3bbba4b7 100644
--- a/Lib/_pydatetime.py
+++ b/Lib/_pydatetime.py
@@ -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

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to