Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Cython / tests / broken / r_unpack.pyx
Size: Mime:
seq = [1, [2, 3]]

def f():
    a, (b, c) = [1, [2, 3]]
    print a
    print b
    print c

def g():
    a, b, c = seq

def h():
    a, = seq