[Pyrex] cdef methods still unclear

Greg Ewing greg.ewing at canterbury.ac.nz
Wed Mar 8 10:37:53 CET 2006


P.S. If you're after a list of reserved words,
there's one in the Pyrex.Compiler.Scanning module:

reserved_words = [
	"global", "include", "ctypedef", "cdef", "def", "class",
	"print", "del", "pass", "break", "continue", "return",
	"raise", "import", "exec", "try", "except", "finally",
	"while", "if", "elif", "else", "for", "in", "assert",
	"and", "or", "not", "is", "in", "lambda", "from",
	"NULL", "cimport"
]

Greg



More information about the Pyrex mailing list