Home | History | Annotate | Download | only in tables

Lines Matching refs:line

4   def cut_comment(line):
5 first_hash = line.find('#')
7 return line
8 return line[:first_hash]
12 def line_split(line):
13 '''Split a line based on a semicolon separator.'''
16 return [normalise(x) for x in line.split(';')]
36 for line in tokens:
37 if len(line) == 2:
38 codepoints = codepoints_parse(line[0])
39 value = map[line[1]]
48 raise ValueError(line)