mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 05:02:31 -06:00
10 lines
181 B
Python
10 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)
|