Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyUnresolvedReferencesInspection
/
nestedComprehensions.py
blob: f7d036e5edd9d04a6654a293d8589e83667d0b3c [
file
] [
log
] [
blame
]
def
f
(
xs
,
ys
):
return
[[(
x
,
y
)
for
y
in
ys
]
for
x
in
xs
]