enable tests for the value type in tuple assignment from typing.Mapping[].items()

This commit is contained in:
Claude
2016-01-17 17:05:29 +01:00
parent 885f7cb068
commit b316fb94c4

View File

@@ -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(