[Python-checkins] Fix dataclassses spelling (GH-28837)

ericvsmith webhook-mailer at python.org
Sat Oct 9 15:18:00 EDT 2021


https://github.com/python/cpython/commit/5b4a7675bcfc6368aff955f4a6231579718f5dad
commit: 5b4a7675bcfc6368aff955f4a6231579718f5dad
branch: main
author: Landon Yarrington <33426811+jly36963 at users.noreply.github.com>
committer: ericvsmith <ericvsmith at users.noreply.github.com>
date: 2021-10-09T15:17:52-04:00
summary:

Fix dataclassses spelling (GH-28837)

files:
M Doc/whatsnew/3.10.rst
M Lib/dataclasses.py
M Lib/test/test_dataclasses.py

diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst
index 266a80be3c96c..b1040d4888ed8 100644
--- a/Doc/whatsnew/3.10.rst
+++ b/Doc/whatsnew/3.10.rst
@@ -996,7 +996,7 @@ Added ``slots`` parameter in :func:`dataclasses.dataclass` decorator.
 Keyword-only fields
 ~~~~~~~~~~~~~~~~~~~
 
-dataclassses now supports fields that are keyword-only in the
+dataclasses now supports fields that are keyword-only in the
 generated __init__ method.  There are a number of ways of specifying
 keyword-only fields.
 
diff --git a/Lib/dataclasses.py b/Lib/dataclasses.py
index 95ff39287bed6..1e98bf9b9bb97 100644
--- a/Lib/dataclasses.py
+++ b/Lib/dataclasses.py
@@ -1387,7 +1387,7 @@ def exec_body_callback(ns):
         ns['__annotations__'] = annotations
 
     # We use `types.new_class()` instead of simply `type()` to allow dynamic creation
-    # of generic dataclassses.
+    # of generic dataclasses.
     cls = types.new_class(cls_name, bases, {}, exec_body_callback)
 
     # Apply the normal decorator.
diff --git a/Lib/test/test_dataclasses.py b/Lib/test/test_dataclasses.py
index a1d9112135af3..bdcb4a2cfd1a0 100644
--- a/Lib/test/test_dataclasses.py
+++ b/Lib/test/test_dataclasses.py
@@ -1907,7 +1907,7 @@ class Parent(Generic[T]):
         # Check MRO resolution.
         self.assertEqual(Child.__mro__, (Child, Parent, Generic, object))
 
-    def test_dataclassses_pickleable(self):
+    def test_dataclasses_pickleable(self):
         global P, Q, R
         @dataclass
         class P:



More information about the Python-checkins mailing list