Guenter Leib: > lexerProperties = set() > NameError: global name 'set' is not defined > > I'm using Python 2.3 on a suse 9.2 and scintilla V1.68 (same on V1.67).
The "set" type became a builtin in Python 2.4, so the easiest thing to do is install Python 2.4. For Python 2.3, you could try importing "sets" and changing the call to "sets.Set()" but there may be other 2.4 features used. Neil _______________________________________________ Scintilla-interest mailing list [email protected] http://mailman.lyra.org/mailman/listinfo/scintilla-interest
