#								-*- syntax -*-
# led syntax specification for the python language
#
# (c) 2002 Jordan DeLong
#

words	:
	class global lamda and assert break continue def del
	elif else except exec finally for if in is not or
	pass print raise return try while self import from

	:						are "keyword";

begin	: """ :
end	: """ :						are "comment";

begin	: # :
endatnl							are "comment";

string	"'"	quote "\\"				are "string";
string	"\""	quote "\\"				are "string";

tokens	: { } ( ) [ ] :					are "grouping";
tokens	: + * - / = | ^ & ~ % > < ! :			are "operator";

options	: hlnums :;
