diff options
author | Prince Roshan <princekrroshan01@gmail.com> | 2023-04-25 02:51:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-25 02:51:27 (GMT) |
commit | b934f97850b7b2db30fa2b26720d58aac4783149 (patch) | |
tree | e8be6e7a0c32dc3310d134aef35744d0cde14849 /Misc | |
parent | 57f8f9a66d4d0b5e590f7746a58136b3b45b1336 (diff) | |
download | cpython-b934f97850b7b2db30fa2b26720d58aac4783149.zip cpython-b934f97850b7b2db30fa2b26720d58aac4783149.tar.gz cpython-b934f97850b7b2db30fa2b26720d58aac4783149.tar.bz2 |
gh-103636: add enums for days and months in calendar module (GH-103642)
Convert day contants to a Day enum, and add a Month enum.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-04-21-10-25-39.gh-issue-103636.YK6NEa.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-04-21-10-25-39.gh-issue-103636.YK6NEa.rst b/Misc/NEWS.d/next/Library/2023-04-21-10-25-39.gh-issue-103636.YK6NEa.rst new file mode 100644 index 0000000..b3b5085 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-04-21-10-25-39.gh-issue-103636.YK6NEa.rst @@ -0,0 +1 @@ +Added Enum for months and days in the calendar module. |