Lines Matching refs:get
571 for extension in options.get('extensions', '').split(','):
580 return options.get(key, str(default)).lower() in \
585 options.get('block_start_string', BLOCK_START_STRING),
586 options.get('block_end_string', BLOCK_END_STRING),
587 options.get('variable_start_string', VARIABLE_START_STRING),
588 options.get('variable_end_string', VARIABLE_END_STRING),
589 options.get('comment_start_string', COMMENT_START_STRING),
590 options.get('comment_end_string', COMMENT_END_STRING),
591 options.get('line_statement_prefix') or LINE_STATEMENT_PREFIX,
592 options.get('line_comment_prefix') or LINE_COMMENT_PREFIX,
607 source = fileobj.read().decode(options.get('encoding', 'utf-8'))