-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-46266: Improve day constants (MONDAY
... SUNDAY
) in calendar
#30412
Conversation
Doc/library/calendar.rst
Outdated
@@ -28,10 +28,10 @@ interpreted as prescribed by the ISO 8601 standard. Year 0 is 1 BC, year -1 is | |||
2 BC, and so on. | |||
|
|||
|
|||
.. class:: Calendar(firstweekday=0) | |||
.. class:: Calendar(firstweekday=MONDAY) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please leave this as 0.
Doc/library/calendar.rst
Outdated
@@ -275,13 +275,13 @@ interpreted as prescribed by the ISO 8601 standard. Year 0 is 1 BC, year -1 is | |||
cssclass_year = "text-italic lead" | |||
|
|||
|
|||
.. class:: LocaleTextCalendar(firstweekday=0, locale=None) | |||
.. class:: LocaleTextCalendar(firstweekday=MONDAY, locale=None) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Leave all the defaults as 0.
Doc/library/calendar.rst
Outdated
|
||
This subclass of :class:`TextCalendar` can be passed a locale name in the | ||
constructor and will return month and weekday names in the specified locale. | ||
|
||
|
||
.. class:: LocaleHTMLCalendar(firstweekday=0, locale=None) | ||
.. class:: LocaleHTMLCalendar(firstweekday=MONDAY, locale=None) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, this one.
Lib/calendar.py
Outdated
@@ -151,7 +153,7 @@ class Calendar(object): | |||
provides data to subclasses. | |||
""" | |||
|
|||
def __init__(self, firstweekday=0): | |||
def __init__(self, firstweekday=MONDAY): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Leave all of these as 0 as well.
Lib/calendar.py
Outdated
@@ -561,7 +563,7 @@ class LocaleTextCalendar(TextCalendar): | |||
month and weekday names in the specified locale. | |||
""" | |||
|
|||
def __init__(self, firstweekday=0, locale=None): | |||
def __init__(self, firstweekday=MONDAY, locale=None): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here too.
Lib/calendar.py
Outdated
@@ -581,7 +583,7 @@ class LocaleHTMLCalendar(HTMLCalendar): | |||
This class can be passed a locale name in the constructor and will return | |||
month and weekday names in the specified locale. | |||
""" | |||
def __init__(self, firstweekday=0, locale=None): | |||
def __init__(self, firstweekday=MONDAY, locale=None): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here too.
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase |
Thanks for the review! I have made the requested changes; please review again |
Thanks for making the requested changes! @rhettinger: please review the changes made to this pull request. |
Thank you, @rhettinger! 👍 |
Thanks @sobolevn for the PR, and @rhettinger for merging it 🌮🎉.. I'm working now to backport this PR to: 3.10. |
GH-30424 is a backport of this pull request to the 3.10 branch. |
) (cherry picked from commit e5894ca) Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Things I've changed:
MONDAY
constant everywhere0
was used as a default day. It is way more readable, you don't have to guess what0
is in this context.__all__
, this is the only thing I doubt. I don't know what policy is about__all__
, so this can be reverted if I am not correct. But, initially I though that it is useful to have them whenfrom calendar import *
and this way they are automatically tested bytest__all__
__all__
, I've updated the test case. Now we check that they are still present:const:MONDAY
is clickablehttps://bugs.python.org/issue46266