> I just added the 'set' import to Shell.py now.<br><br>To use sets in 2.3 <br><br>import sets<br>s1=sets.Set()<br>(note the capitalization of Set)<br><br><br>in 2.5<br><br>s1=set()<br><br>or<br><br>import sets<br>
s1=sets.Set()<br><br><br>