]> granicus.if.org Git - python/commitdiff
Fix syntax warnings in tests introduced in bpo-15248. (GH-11932)
authorSerhiy Storchaka <storchaka@gmail.com>
Tue, 19 Feb 2019 11:49:09 +0000 (13:49 +0200)
committerGitHub <noreply@github.com>
Tue, 19 Feb 2019 11:49:09 +0000 (13:49 +0200)
Lib/test/test_bytes.py
Lib/test/test_extcall.py
Lib/test/test_tuple.py

index f7454d9b36a86a7ab5cfa87035b84f6f96da115a..a0913603e73707174169109780a85f5dc4091760 100644 (file)
@@ -852,9 +852,10 @@ class BytesTest(BaseBytesTest, unittest.TestCase):
     type2test = bytes
 
     def test_getitem_error(self):
+        b = b'python'
         msg = "byte indices must be integers or slices"
         with self.assertRaisesRegex(TypeError, msg):
-            b'python'['a']
+            b['a']
 
     def test_buffer_is_readonly(self):
         fd = os.open(__file__, os.O_RDONLY)
@@ -1042,14 +1043,15 @@ class ByteArrayTest(BaseBytesTest, unittest.TestCase):
     type2test = bytearray
 
     def test_getitem_error(self):
+        b = bytearray(b'python')
         msg = "bytearray indices must be integers or slices"
         with self.assertRaisesRegex(TypeError, msg):
-            bytearray(b'python')['a']
+            b['a']
 
     def test_setitem_error(self):
+        b = bytearray(b'python')
         msg = "bytearray indices must be integers or slices"
         with self.assertRaisesRegex(TypeError, msg):
-            b = bytearray(b'python')
             b['a'] = "python"
 
     def test_nohash(self):
index a3ff4413eee60f8cd164db2bb39cc34757490736..3cac3bda4253b47b1bdbf302864195a37c93bb12 100644 (file)
@@ -264,7 +264,8 @@ What about willful misconduct?
       ...
     TypeError: dir() argument after * must be an iterable, not function
 
-    >>> None(*h)
+    >>> nothing = None
+    >>> nothing(*h)
     Traceback (most recent call last):
       ...
     TypeError: NoneType object argument after * must be an iterable, \
@@ -305,7 +306,7 @@ not function
       ...
     TypeError: dir() argument after ** must be a mapping, not function
 
-    >>> None(**h)
+    >>> nothing(**h)
     Traceback (most recent call last):
       ...
     TypeError: NoneType object argument after ** must be a mapping, \
index ca46d0b5a64539a0aac4ba19e77bdfc68c61bd58..d2a2ed310b05d79deaddd520925f772c46657f92 100644 (file)
@@ -19,9 +19,10 @@ class TupleTest(seq_tests.CommonTest):
     type2test = tuple
 
     def test_getitem_error(self):
+        t = ()
         msg = "tuple indices must be integers or slices"
         with self.assertRaisesRegex(TypeError, msg):
-            ()['a']
+            t['a']
 
     def test_constructors(self):
         super().test_constructors()