提交 38ef0438 authored 作者: Iban Harlouchet's avatar Iban Harlouchet

This commas inside tuples...

上级 87fd0140
......@@ -111,7 +111,7 @@ Get specified slice of a typed list.
class Append(Op):
# See doc in instance of this Op after the class definition.
__props__ = ("inplace")
__props__ = ("inplace",)
def __init__(self, inplace=False):
self.inplace = inplace
......@@ -181,7 +181,7 @@ Append an element at the end of another list.
class Extend(Op):
# See doc in instance of this Op after the class definition.
__props__ = ("inplace")
__props__ = ("inplace",)
def __init__(self, inplace=False):
self.inplace = inplace
......@@ -257,7 +257,7 @@ Append all elements of a list at the end of another list.
class Insert(Op):
# See doc in instance of this Op after the class definition.
__props__ = ("inplace")
__props__ = ("inplace",)
def __init__(self, inplace=False):
self.inplace = inplace
......@@ -333,7 +333,7 @@ Insert an element at an index in a typed list.
class Remove(Op):
# See doc in instance of this Op after the class definition.
__props__ = ("inplace")
__props__ = ("inplace",)
def __init__(self, inplace=False):
self.inplace = inplace
......@@ -384,7 +384,7 @@ remove = Remove()
class Reverse(Op):
# See doc in instance of this Op after the class definition.
__props__ = ("inplace")
__props__ = ("inplace",)
def __init__(self, inplace=False):
self.inplace = inplace
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论