Todd Miller wrote: >I was able to create an array and extract a few elements w/o problems. >Trying to print it dumps core. > > I don't get a core dump, but I do get an error in concatenate. What version are you running? On which platform? What do you get when you run a = array(["this"]*10000) b=a[:3] c=a[-3:] concantenate((b,c)) -Travis