Lines Matching refs:posix
21 def __init__(self, instream=None, infile=None, posix=False, argument
31 self.posix = posix
32 if posix:
39 if self.posix:
156 if self.token or (self.posix and quoted):
163 elif self.posix and nextchar in self.escape:
173 if not self.posix:
181 if self.token or (self.posix and quoted):
193 if not self.posix:
199 elif (self.posix and nextchar in self.escape and self.state
226 if self.token or (self.posix and quoted):
233 if self.posix:
235 if self.token or (self.posix and quoted):
247 elif self.posix and nextchar in self.quotes:
249 elif self.posix and nextchar in self.escape:
264 if self.token or (self.posix and quoted):
270 if self.posix and not quoted and result == '':
305 def split(s, comments=False, posix=True): argument
307 lex = shlex(s, posix=posix)