Victor B. Gonzalez: > 1. If I create an object like so: > > l = [] # then attempt to apply a method like so: > l.append(1) # the dot does not open up a list of methods... > > Q. Is this intended? Is there a setting I could be missing? Is this a > possible limitation :( ?
Yes, it is intended. SciTE has no understanding of Python syntax so doesn't know that 'l' is a list. Neil _______________________________________________ Scite-interest mailing list [email protected] http://mailman.lyra.org/mailman/listinfo/scite-interest
