Searched refs:parts (Results 1 – 1 of 1) sorted by relevance
164 def __init__(self, parts = ()): argument165 if isinstance(parts, Names):166 parts = parts.parts167 elif isinstance(parts, strtypes):168 parts = (parts,)169 self.parts = tuple(parts)172 return '_'.join(self.parts)176 return Names(self.parts + (other,))178 return Names(self.parts + other.parts)180 return Names(self.parts + other)[all …]