Skip to content

Commit f7b9036

Browse files
committed
增加了扩展类型List,是对Python原版列表的加强
1 parent 664fcb7 commit f7b9036

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

type.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ def toString(self):
251251
return String(str(self.__int))
252252

253253
class List:
254-
"列表类型,是对Python原版列表的扩展"
254+
"列表类型,是对Python原版列表的加强"
255255
def __init__(self, list_) -> None:
256256
if type(list_) is not list:
257257
raise TypeError(

0 commit comments

Comments
 (0)