[Python-checkins] Fix 'deecorator' typo in test/test_dataclasses (GH-5899)

Miss Islington (bot) webhook-mailer at python.org
Sun Feb 25 22:09:08 EST 2018


https://github.com/python/cpython/commit/1a5790689f134881d8e7cc8b1ac45121468823c6
commit: 1a5790689f134881d8e7cc8b1ac45121468823c6
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-02-25T19:09:05-08:00
summary:

Fix 'deecorator' typo in test/test_dataclasses (GH-5899)

(cherry picked from commit 973cae07d6ce7f5a93bd9cd3bcb724a96cfe14e9)

Co-authored-by: Terry Jan Reedy <tjreedy at udel.edu>

files:
M Lib/test/test_dataclasses.py

diff --git a/Lib/test/test_dataclasses.py b/Lib/test/test_dataclasses.py
index 9752f5502c7d..c24af7fc79c4 100755
--- a/Lib/test/test_dataclasses.py
+++ b/Lib/test/test_dataclasses.py
@@ -2403,7 +2403,7 @@ def __hash__(self):
                 return 301
 
         # If frozen or eq is None, then use the default value (do not
-        # specify any value in the deecorator).
+        # specify any value in the decorator).
         for frozen, eq,    base,   expected       in [
             (None,  None,  object, 'unhashable'),
             (None,  None,  Base,   'unhashable'),



More information about the Python-checkins mailing list