Python 3.3 蓝图

标签 python python-3.x python-3.3

我有兴趣了解 Python 3.3 中将发生哪些语言更改(无需订阅 developer mailing list 并监视消息流)。

我找到了 this page在 python.org 上,但我想知道其他程序员是否会推荐任何其他引用资料。

最佳答案

PEP 398列出了 3.3 中可能包含的一些功能:

Candidate PEPs:

PEP 362: Function Signature Object
PEP 380: Syntax for Delegating to a Subgenerator
PEP 382: Namespace Packages
PEP 393: Flexible String Representation
PEP 395: Module Aliasing
PEP 397: Python launcher for Windows
PEP 3143: Standard daemon process library
PEP 3151: Reworking the OS and IO exception hierarchy

(Note that these are not accepted yet and even if they are, they might not be finished in time for Python 3.3.)

Other planned large-scale changes:

Addition of the "packaging" module, replacing "distutils"
Implementing __import__ using importlib
Email version 6
A standard event-loop interface (PEP by Jim Fulton pending)
Adding the faulthandler module.
Breaking out standard library and docs in separate repos?
A PEP on supplementing C modules with equivalent Python modules?

关于Python 3.3 蓝图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6737417/

相关文章:

Python 线程优于简单的 while 循环或线程优化

python - 如何使用 python 3.5 将 mysql 数据导入到 .txt 文件?

python - 无法为 Selenium 使用 chrome 驱动程序

python - 在 Python Pandas 中以长格式追加列表元素

python - Scipy 基于误差平方和优化常数

python - python 3 中带有条件的 Itertools

python - 为什么我的(增量)值呈指数级增长?

python - 如何根据另一个列表对列表进行排序? Python

python - 在 python argparse 中,是否有 nargs=1 的用例?

python - 在2.4版本的Tensorflow中,我们应该在pip安装tensorflow后单独做tensorflow-gpu吗?