pymel.tools.envparse.EnvLex¶
digraph inheritancee24c268e88 { rankdir=TB; ranksep=0.15; nodesep=0.15; size="8.0, 12.0"; "EnvLex" [fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",URL="#pymel.tools.envparse.EnvLex",style="setlinewidth(0.5)",tooltip="ply.lex lexer class to parse Maya.env file",height=0.25,shape=box,fontsize=8]; }
- class EnvLex¶
- ply.lex lexer class to parse Maya.env file - build(**kwargs)¶
 - t_ANY_error(t)¶
 - t_ANY_ignore_COMMENT = '\\#[^\\n]*'¶
 - t_ANY_newline(t)¶
- [ t]*n+ 
 - t_INITIAL_error(t)¶
 - t_INITIAL_ignore = '^[ \t]+'¶
 - t_VAR(t)¶
- [^\^/^:^*^”^<^>^|^=^ ^t^n^#]+ 
 - t_cancel_ignore = '[^\n]+'¶
 - t_end_ASSIGN(t)¶
- [ t]*=[ t]* 
 - t_end_VALUE(t)¶
- [^=^n^#]+ 
 - t_end_ignore = '[ \t]+$'¶
 - t_left_ASSIGN(t)¶
- [ t]*=[ t]* 
 - t_left_error(t)¶
 - t_left_ignore = '[ \t]+'¶
 - t_right_ASSIGN(t)¶
- [ t]*=[ t]* 
 - t_right_VALUE(t)¶
- [^=^n^#]+ 
 - t_right_error(t)¶
 - t_right_ignore = '[ \t]+'¶
 - test(data)¶
 - tokens = ('COMMENT', 'ASSIGN', 'VAR', 'VALUE', 'OK', 'CANCEL', 'newline')¶