Python 3.7 已经正式发布了,并且提供了下载,随同 Python 3.7 发布的还有 3.6.6 版本,具体详情可分别查阅更新说明:
Python 3.7 包含许多新特性和优化,亮点包括: 1.新语法特性: 推迟评估类型注释 2.向后不兼容语法更改: async 和 await 现在保留关键字 3.新的库模块: contextvars: PEP 567 – Context Variables dataclasses: PEP 557 – Data Classes importlib.resources 4.新的内置功能: 新的 breakpoint() 函数 数据模型改进: customization of access to module attributes. core support for typing module and generic types. the insertion-order preservation nature of dict objects has been declared to be an official part of the Python language spec. 5.标准库重要改进: asyncio模块性能和可用性改进 time 模块支持 nanosecond resolution 6.CPython 实现改进: 避免使用 ASCII 作为默认文本编码: legacy C locale coercion forced UTF-8 runtime mode deterministic .pycs 新的 development runtime mode 改进 DeprecationWarning 处理 7.C API 改进: 用于 thread-local 存储的新的 C API 8.文档改进: Python 文档翻译 新增文档翻译:日语、法语和韩语 9.各项更改详情请查阅这里
相关主题 |