1
0
forked from VimPlug/jedi

refactorings and start of *args / **kwargs

This commit is contained in:
David Halter
2012-05-04 14:46:28 +02:00
parent ec2e0b28cf
commit b6e98b2eee
3 changed files with 52 additions and 31 deletions

View File

@@ -854,11 +854,11 @@ class Array(Call):
def __repr__(self):
if self.type == self.NOARRAY:
temp = 'noarray'
type = 'noarray'
else:
temp = self.type
parent_str = " of %s" % self.parent if self.parent else ""
return "<%s: %s%s>" % (self.__class__.__name__, temp, parent_str)
type = self.type
#parent_str = " of %s" % self.parent if self.parent else ""
return "<%s: %s%s>" % (self.__class__.__name__, type, self.values)
class NamePart(str):