Language.prototype.whpython = {
    "comment" : {
	"single" : {
	    "begin" : "#"
	},
	"double" : {
	    "begin" : "\"\"\"",
	    "end" : "\"\"\""
	}
    },
    "quote" : new Array(
			"\"", "'"
			),
    "keyword" : new Array(
			  "and", "as", "assert", "break", "class", "continue", "def", "del", "elif", "else", "except", "exec", "False", "finally", "for", "from", "global", "if", "import", "in", "is", "lambda", "None", "not", "or", "pass", "print", "raise", "return", "True", "try", "while", "with", "yield"
			  ),
    "function" : new Array(
			   "abs", "all", "any", "basestring", "bool", "callable", "chr", "classmethod", "cmp", "compile", "complex", "delattr", "dict", "dir", "divmod", "enumerate", "eval", "execfile", "file", "filter", "float", "frozenset", "getattr", "global", "hasattr", "hash", "help", "hex", "id", "input", "int", "isinstance", "issubclass", "iter", "len", "list", "locals", "long", "map", "max", "min", "object", "oct", "open", "ord", "pow", "property", "range", "raw_input", "reduce", "reload", "repr", "reversed", "round", "set", "setattr", "slice", "sorted", "staticmethod", "str", "sum", "super", "tuple", "type", "unichr", "unicode", "vars", "xrange", "zip"
			   ),
    "sign" : new Array(
		       "(", ")", "{", "}", ":", "+", "-", "!", "<", ">", "<=", ">=", "==", ";", ".", "%", "/", "[", "]", "|", "^", "~", "&", "@", "`", "*"
	),

     "value" : new Array( "1", "2", "3", "4", "5", "6", "7", "8", "9", "0" )
}

