summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Library/2023-06-09-20-34-23.gh-issue-105566.YxlGg1.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS.d/next/Library/2023-06-09-20-34-23.gh-issue-105566.YxlGg1.rst')
-rw-r--r--Misc/NEWS.d/next/Library/2023-06-09-20-34-23.gh-issue-105566.YxlGg1.rst10
1 files changed, 0 insertions, 10 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-06-09-20-34-23.gh-issue-105566.YxlGg1.rst b/Misc/NEWS.d/next/Library/2023-06-09-20-34-23.gh-issue-105566.YxlGg1.rst
deleted file mode 100644
index c2c497a..0000000
--- a/Misc/NEWS.d/next/Library/2023-06-09-20-34-23.gh-issue-105566.YxlGg1.rst
+++ /dev/null
@@ -1,10 +0,0 @@
-Deprecate creating a :class:`typing.NamedTuple` class using keyword
-arguments to denote the fields (``NT = NamedTuple("NT", x=int, y=str)``).
-This will be disallowed in Python 3.15.
-Use the class-based syntax or the functional syntax instead.
-
-Two methods of creating ``NamedTuple`` classes with 0 fields using the
-functional syntax are also deprecated, and will be disallowed in Python 3.15:
-``NT = NamedTuple("NT")`` and ``NT = NamedTuple("NT", None)``. To create a
-``NamedTuple`` class with 0 fields, either use ``class NT(NamedTuple): pass`` or
-``NT = NamedTuple("NT", [])``.