Merge branch 'stable' into 1.7-release

This commit is contained in:
Takeshi KOMIYA
2018-02-04 23:20:48 +09:00
4 changed files with 26 additions and 1 deletions

View File

@@ -47,6 +47,7 @@ def test_mangle_signature():
(a, b={'c=d, ': 3, '\\\\': 3}) :: (a[, b])
(a=1, b=2, c=3) :: ([a, b, c])
(a=1, b=<SomeClass: a, b, c>, c=3) :: ([a, b, c])
(a: int, b: int) -> str :: (a, b)
"""
TEST = [[y.strip() for y in x.split("::")] for x in TEST.split("\n")