[Python-checkins] cpython (merge 3.5 -> 3.6): Issue #28303: Merge from 3.5

berker.peksag python-checkins at python.org
Wed Sep 28 10:27:45 EDT 2016


https://hg.python.org/cpython/rev/d0b509777443
changeset:   104131:d0b509777443
branch:      3.6
parent:      104128:078f185f0041
parent:      104130:650775f10178
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Wed Sep 28 17:29:12 2016 +0300
summary:
  Issue #28303: Merge from 3.5

files:
  Lib/unittest/__init__.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/unittest/__init__.py b/Lib/unittest/__init__.py
--- a/Lib/unittest/__init__.py
+++ b/Lib/unittest/__init__.py
@@ -12,7 +12,7 @@
     import unittest
 
     class IntegerArithmeticTestCase(unittest.TestCase):
-        def testAdd(self):  ## test method names begin 'test*'
+        def testAdd(self):  # test method names begin with 'test'
             self.assertEqual((1 + 2), 3)
             self.assertEqual(0 + 1, 1)
         def testMultiply(self):

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list