You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following valid Python programs fail to build via codon build. They will build if slightly edited.
$ codon --version
0.17.0
defu():
yield1,2,3
[[x,y,z]] =u() # fix via [[x,y,z]] = list(u()) or [x,y,z] = next(u())# cex.py:3:13-16: error: 'Generator[Tuple[int,int,int]]' object has no attribute '__getitem__'
x, y=0,0while (x,y) == (0,0):
[(x,y)] = [(0,0)] # fix via ((x,y),) = [(0,0)]# cex.py:3:5-22: error: 'Tuple[int,int]' does not match expected type 'int'
The text was updated successfully, but these errors were encountered:
The following valid Python programs fail to build via
codon build
. They will build if slightly edited.The text was updated successfully, but these errors were encountered: