summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
author97littleleaf11 <11172084+97littleleaf11@users.noreply.github.com>2022-02-17 03:26:07 (GMT)
committerGitHub <noreply@github.com>2022-02-17 03:26:07 (GMT)
commitde6043e596492201cc1a1eb28038970bb69f3107 (patch)
treede508de7d1a35ac82d227e4754186e5d93bc8901 /Misc
parent6f1efd19a70839d480e4b1fcd9fecd3a8725824b (diff)
downloadcpython-de6043e596492201cc1a1eb28038970bb69f3107.zip
cpython-de6043e596492201cc1a1eb28038970bb69f3107.tar.gz
cpython-de6043e596492201cc1a1eb28038970bb69f3107.tar.bz2
bpo-46066: Deprecate kwargs syntax for TypedDict definitions (GH-31126)
Closes python/typing#981 https://bugs.python.org/issue46066
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS.d/next/Library/2022-02-08-16-42-20.bpo-46066.m32Hl0.rst3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 64bd91d..244d757 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1974,6 +1974,7 @@ Arnon Yaari
Alakshendra Yadav
Hirokazu Yamamoto
Masayuki Yamamoto
+Jingchen Ye
Ka-Ping Yee
Chi Hsuan Yen
Jason Yeo
diff --git a/Misc/NEWS.d/next/Library/2022-02-08-16-42-20.bpo-46066.m32Hl0.rst b/Misc/NEWS.d/next/Library/2022-02-08-16-42-20.bpo-46066.m32Hl0.rst
new file mode 100644
index 0000000..d13d942
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-02-08-16-42-20.bpo-46066.m32Hl0.rst
@@ -0,0 +1,3 @@
+Deprecate kwargs-based syntax for :class:`typing.TypedDict` definitions.
+It had confusing semantics when specifying totality, and was largely unused.
+Patch by Jingchen Ye.