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

Terry Jan Reedy webhook-mailer at python.org
Sun Feb 25 21:38:21 EST 2018


https://github.com/python/cpython/commit/973cae07d6ce7f5a93bd9cd3bcb724a96cfe14e9
commit: 973cae07d6ce7f5a93bd9cd3bcb724a96cfe14e9
branch: master
author: Terry Jan Reedy <tjreedy at udel.edu>
committer: GitHub <noreply at github.com>
date: 2018-02-25T21:38:18-05:00
summary:

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

files:
M Lib/test/test_dataclasses.py

diff --git a/Lib/test/test_dataclasses.py b/Lib/test/test_dataclasses.py
index ea019ae847b2..582cb3459f5d 100755
--- a/Lib/test/test_dataclasses.py
+++ b/Lib/test/test_dataclasses.py
@@ -2411,7 +2411,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