Lines Matching refs:str
112 elif isinstance(field, str):179 def make_id(str):181 str = "".join([c if c in identifier_chars else "_" for c in str])182 if str[0] in (string.digits + "."):183 str = "_" + str184 assert re.match("^[A-Za-z_][A-Za-z0-9_.]*$", str), "FILE"+str185 return str