コード例 #1
0
 def __str__(self):
     """Returns the string representation of self."""
     return AbstractCollection.__str__(self)
コード例 #2
0
 def __str__(self):
     """Returns the string representation of self."""
     return AbstractCollection.__str__(self)
コード例 #3
0
ファイル: abstractbag.py プロジェクト: mark124/CIS-214
 def __str__(self):
     """Returns the string rep of the bag."""
     result = AbstractCollection.__str__(self)
     return "{" + result[1:-1] + "}"