We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4974b6d commit e90b958Copy full SHA for e90b958
py/list.go
@@ -4,6 +4,7 @@ package py
4
5
var ListType = NewType("list", "list() -> new empty list\nlist(iterable) -> new list initialized from iterable's items")
6
7
+// FIXME lists are mutable so this should probably be struct { Tuple } then can use the sub methods on Tuple
8
type List []Object
9
10
// Type of this List object
0 commit comments