Home | History | Annotate | Download | only in iobench

Lines Matching refs:NEWLINES

16 NEWLINES = 'lf'
40 return (("%s-%s-%s.txt" % (name, TEXT_ENCODING, NEWLINES), size)
381 if NEWLINES == "all":
385 {"cr": "\r", "lf": "\n", "crlf": "\r\n"}[NEWLINES])
407 global TEXT_ENCODING, NEWLINES
426 parser.add_option("-N", "--newlines",
427 action="store", dest="newlines", default='lf',
433 NEWLINES = options.newlines.lower()
434 if NEWLINES not in ('lf', 'cr', 'crlf', 'all'):
435 parser.error("invalid 'newlines' option: %r" % NEWLINES)