Lines Matching refs:Or
155 Pairs are returned in LIFO order if last is true or FIFO order if false.
248 'Make a new {typename} object from a sequence or iterable'
288 >>> p = Point(11, y=22) # instantiate with positional args or keywords
307 # message or automatically replace the field name with a valid name.
314 if (not all(c.isalnum() or c=='_' for c in name)
315 or _iskeyword(name)
316 or not name
317 or name[0].isdigit()
318 or name.startswith('_')
319 or name in seen):
323 if not all(c.isalnum() or c=='_' for c in name):
367 # sys._getframe is not defined (Jython for example) or sys._getframe is not
383 or multiset. Elements are stored as dictionary keys and their counts
416 Note: If a count is set to zero or reduced to zero, it will remain
417 in the counter until the entry is deleted or the counter is cleared:
434 from an input iterable. Or
479 Note, if an element's count has been set to zero or is a negative
498 Source can be an iterable, a dictionary, or another Counter instance.
535 Source can be an iterable, a dictionary, or another Counter instance.