目录
3.9 PEP596:
PEP 584:
大概的说明:
PEP 585:
大概的说明:
3.10 PEP 619:
PEP 604:
大概的说明:
PEP 618:
大概的说明:
网址:
PEP 596 -- Python 3.9 Release Schedule | Python.orghttps://www.python.org/dev/peps/pep-0596/
网址:
PEP 584 -- Add Union Operators To dict | Python.orghttps://www.python.org/dev/peps/pep-0584/
字典类型,增加了一个操作符: Union, | , dicta | dictb 这样
其实就是联合的意思,理论上dicta | dictb 是很有可能不等于dictb|dicta的
a:{1:'x'} b:{1:'y'}
a|b {1:'y'}
b|a {1:'x'}
发布历史:
01-Mar-2019, 16-Oct-2019, 02-Dec-2019, 04-Feb-2020, 17-Feb-2020
网址:
PEP 585 -- Type Hinting Generics In Standard Collections | Python.orgThe official home of the Python Programming Languagehttps://www.python.org/dev/peps/pep-0585/
我个人的理解是,可以定义类型,泛类型
比如定义一个list 和定义一个list[str] 其实是不一样的。
list == list[str] False
list[str] == list[int] False
可能是先定义一个泛类型,然后后面再使用的时候,就可以有约束吧。
发布历史:
03-Mar-2019
网址:
PEP 619 -- Python 3.10 Release Schedule | Python.orghttps://www.python.org/dev/peps/pep-0619/
网址:
PEP 604 -- Allow writing union types as X | Y | Python.orgThe official home of the Python Programming Languagehttps://www.python.org/dev/peps/pep-0604/
影响2个函数的编写方式:isinstance and issubclass
This PEP proposes overloading the | operator on types to allow writing Union[X, Y] as X | Y, and allows it to appear inisinstance and issubclass calls.
其实本修改,只是做了一个编写格式上的优化,更易读而已,功能上没有变化,好像后面还有说明,就是和别的语言的风格兼容
发布历史:
28-Aug-2019, 05-Aug-2020
网址:
PEP 618 -- Add Optional Length-Checking To zip | Python.orghttps://www.python.org/dev/peps/pep-0618/
对zip这个,增加了一个可选的参数:strict
是否严格校验zip的什么长度,默认不严格校验,做到向下兼容
如果打开为True,可以避免一些难以检查的错误
发布历史:
01-May-2020, 10-May-2020, 16-Jun-2020