[Python-checkins] Fix trivial typo in test_dataclasses.py. (GH-5398)

Eric V. Smith webhook-mailer at python.org
Sun Jan 28 19:18:58 EST 2018


https://github.com/python/cpython/commit/7c99e931a90d468e8019a0409f16213b3aba7067
commit: 7c99e931a90d468e8019a0409f16213b3aba7067
branch: master
author: Eric V. Smith <ericvsmith at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-01-28T19:18:55-05:00
summary:

Fix trivial typo in test_dataclasses.py. (GH-5398)

files:
M Lib/test/test_dataclasses.py

diff --git a/Lib/test/test_dataclasses.py b/Lib/test/test_dataclasses.py
index 53281f9dd9de..736bc490867b 100755
--- a/Lib/test/test_dataclasses.py
+++ b/Lib/test/test_dataclasses.py
@@ -668,7 +668,7 @@ class Date:
         with self.assertRaisesRegex(TypeError, 'unpack'):
             x, y, z = Point3D(4, 5, 6)
 
-        # Maka sure another class with the same field names isn't
+        # Make sure another class with the same field names isn't
         #  equal.
         @dataclass
         class Point3Dv1:



More information about the Python-checkins mailing list