Lines Matching refs:first
88 # longest operators first (e.g., if = came before ==, == would get
153 The first parameter, readline, must be a callable object which provides
232 # Only care about the first 12 characters.
290 first = read_or_stop()
291 if first.startswith(BOM_UTF8):
293 first = first[3:]
295 if not first:
298 encoding = find_cookie(first)
300 return encoding, [first]
301 if not blank_re.match(first):
302 return default, [first]
306 return default, [first]
310 return encoding, [first, second]
312 return default, [first, second]