summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2015-08-02 02:55:36 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2015-08-02 02:55:36 (GMT)
commitce17f764757306cdcdf1555c67dd0eed8e6bca8a (patch)
treed3f58fc68da493e31b48f349da73a526d97bfb8f
parent3e77677692e969fd0a0c14c7b927da6429e8e13e (diff)
downloadcpython-ce17f764757306cdcdf1555c67dd0eed8e6bca8a.zip
cpython-ce17f764757306cdcdf1555c67dd0eed8e6bca8a.tar.gz
cpython-ce17f764757306cdcdf1555c67dd0eed8e6bca8a.tar.bz2
Issue #23182: PEP8-ify the annotation grammar tests. Patch by Ian Lee.
-rw-r--r--Lib/test/test_grammar.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py
index 70d85b1..fb5ffc0 100644
--- a/Lib/test/test_grammar.py
+++ b/Lib/test/test_grammar.py
@@ -302,27 +302,27 @@ class GrammarTests(unittest.TestCase):
# argument annotation tests
def f(x) -> list: pass
self.assertEqual(f.__annotations__, {'return': list})
- def f(x:int): pass
+ def f(x: int): pass
self.assertEqual(f.__annotations__, {'x': int})
- def f(*x:str): pass
+ def f(*x: str): pass
self.assertEqual(f.__annotations__, {'x': str})
- def f(**x:float): pass
+ def f(**x: float): pass
self.assertEqual(f.__annotations__, {'x': float})
- def f(x, y:1+2): pass
+ def f(x, y: 1+2): pass
self.assertEqual(f.__annotations__, {'y': 3})
- def f(a, b:1, c:2, d): pass
+ def f(a, b: 1, c: 2, d): pass
self.assertEqual(f.__annotations__, {'b': 1, 'c': 2})
- def f(a, b:1, c:2, d, e:3=4, f=5, *g:6): pass
+ def f(a, b: 1, c: 2, d, e: 3 = 4, f=5, *g: 6): pass
self.assertEqual(f.__annotations__,
- {'b': 1, 'c': 2, 'e': 3, 'g': 6})
- def f(a, b:1, c:2, d, e:3=4, f=5, *g:6, h:7, i=8, j:9=10,
- **k:11) -> 12: pass
+ {'b': 1, 'c': 2, 'e': 3, 'g': 6})
+ def f(a, b: 1, c: 2, d, e: 3 = 4, f=5, *g: 6, h: 7, i=8, j: 9 = 10,
+ **k: 11) -> 12: pass
self.assertEqual(f.__annotations__,
- {'b': 1, 'c': 2, 'e': 3, 'g': 6, 'h': 7, 'j': 9,
- 'k': 11, 'return': 12})
+ {'b': 1, 'c': 2, 'e': 3, 'g': 6, 'h': 7, 'j': 9,
+ 'k': 11, 'return': 12})
# Check for issue #20625 -- annotations mangling
class Spam:
- def f(self, *, __kw:1):
+ def f(self, *, __kw: 1):
pass
class Ham(Spam): pass
self.assertEqual(Spam.f.__annotations__, {'_Spam__kw': 1})