summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPrince Roshan <princekrroshan01@gmail.com>2023-04-25 02:51:27 (GMT)
committerGitHub <noreply@github.com>2023-04-25 02:51:27 (GMT)
commitb934f97850b7b2db30fa2b26720d58aac4783149 (patch)
treee8be6e7a0c32dc3310d134aef35744d0cde14849 /Misc
parent57f8f9a66d4d0b5e590f7746a58136b3b45b1336 (diff)
downloadcpython-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.rst1
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.