lib/__builtins__/list.py | raw changeset files shortlog |
1.1 --- a/lib/__builtins__/list.py Sun Nov 20 00:09:02 2016 +0100 1.2 +++ b/lib/__builtins__/list.py Sun Nov 20 00:09:36 2016 +0100 1.3 @@ -78,7 +78,14 @@ 1.4 1.5 def __add__(self, other): pass 1.6 def __iadd__(self, other): pass 1.7 - def __str__(self): pass 1.8 + 1.9 + def __str__(self): 1.10 + 1.11 + "Return a string representation of the list." 1.12 + 1.13 + # NOTE: To be implemented, maybe using a buffer. 1.14 + 1.15 + return "[...]" 1.16 1.17 def __bool__(self): 1.18