Lines Matching defs:line
27 # readlines(path) -- a list of each line of text in the UTF-8 encoded file
362 for line in pyvenvcfg:
363 key, had_equ, value = line.partition('=')
450 # but environment variables and command-line options cannot.
760 for line in pth:
761 line = line.partition('#')[0].strip()
762 if not line:
764 elif line == 'import site':
766 elif line.startswith('import '):
767 warn("unsupported 'import' line in ._pth file")
769 pythonpath.append(joinpath(pth_dir, line))