Searched refs:IsDone (Results 1 – 2 of 2) sorted by relevance
174 def IsDone(self) -> bool: member in GNValueParser178 while not self.IsDone() and self.input[self.cur] in ' \t\n':201 if not self.IsDone():214 while not self.IsDone():230 if self.IsDone():267 if self.IsDone():273 if not self.IsDone() and _IsDigitOrMinus(self.input[self.cur]):275 while not self.IsDone() and self.input[self.cur].isdigit():285 if self.IsDone():294 while not self.IsDone() and self.input[self.cur] != '"':[all …]
30 from prompt_toolkit.filters import IsDone260 filter=~IsDone()