mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
9 lines
181 B
Python
9 lines
181 B
Python
|
|
def __str__(self):
|
|
return self.cStr()
|
|
|
|
def __len__(self):
|
|
return self.length()
|
|
|
|
def __getitem__(self, n):
|
|
return self.cStr().__getitem__(n)
|