python / python-docs-zh-cn

zh_CN translation of the Python documentation
https://docs.python.org/zh-cn/
431 stars 74 forks source link

内置函数super([type[, object-or-type]])的翻译更改建议 #172

Closed SoonZQ closed 3 years ago

SoonZQ commented 3 years ago

原文的第一句 ‘’‘ 返回一个代理对象,它会将方法调用委托给 type 的父类或兄弟类。 ’‘’ 建议改成 ‘’‘ 返回一个代理对象,它会将方法调用委托给 type 的继承的所有父类。 ’‘’ 兄弟类太有迷惑性,读的时候我一直以为是type的兄弟类,而不是父类的兄弟类。

SoonZQ commented 3 years ago

我理解错了,打扰了~~~