Home | History | Annotate | Download | only in python2.7

Lines Matching refs:tt

40             toplevel = tt = lexer.get_token()
41 if not tt:
43 elif tt[0] == '#':
46 pos = len(tt) + 1
50 elif tt == 'machine':
52 elif tt == 'default':
54 elif tt == 'macdef': # Just skip to end of macdefs
67 "bad toplevel token %r" % tt, file, lexer.lineno)
74 tt = lexer.get_token()
75 if (tt.startswith('#') or
76 tt in {'', 'machine', 'default', 'macdef'}):
79 lexer.push_token(tt)
84 % (toplevel, entryname, repr(tt)),
86 elif tt == 'login' or tt == 'user':
88 elif tt == 'account':
90 elif tt == 'password':
93 raise NetrcParseError("bad follower token %r" % tt,