From b316fb94c45911381f00b36721c48b5e3ed26efb Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 17 Jan 2016 17:05:29 +0100 Subject: [PATCH] enable tests for the value type in tuple assignment from typing.Mapping[].items() --- test/completion/pep0484_typing.py | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/test/completion/pep0484_typing.py b/test/completion/pep0484_typing.py index b3fe6055..f31542ea 100644 --- a/test/completion/pep0484_typing.py +++ b/test/completion/pep0484_typing.py @@ -149,16 +149,12 @@ def mapping( (key, value) = item #? Key() key - ##? Value() --- TODO fix support for tuple assignment - # https://github.com/davidhalter/jedi/pull/663#issuecomment-172317854 - #? + #? Value() value for key, value in p.items(): #? Key() key - ##? Value() --- TODO fix support for tuple assignment - # https://github.com/davidhalter/jedi/pull/663#issuecomment-172317854 - #? + #? Value() value for key in r: #? Key() @@ -169,9 +165,7 @@ def mapping( for key, value in t: #? Key() key - ##? Value() --- TODO fix support for tuple assignment - # https://github.com/davidhalter/jedi/pull/663#issuecomment-172317854 - #? + #? Value() value def union(