📜 ⬆️ ⬇️

First Alpha Python 3.4.0 released

image So, strictly according to the schedule , the first alpha version of Python 3.4 was released. The new version includes many improvements to the 3.x branch, including hundreds of minor improvements and bug fixes.

The main features of the current release 3.4:


You can pick up the link: http://www.python.org
')
Full list of innovations

What's new?
New syntax features:

New built-in modules:

Implementation improvements:
Embedded improvements:

Optimization
UTF-32 decoder is now 3-4 times faster.

PEP 445 : Added new API to customize memory allocators in Python
It took to use in CPython, but it is not excluded that it is useful for other purposes.

PEP 442 : Secure Object Finalization
This PEP removes all current tricks and limitations regarding the finalization of the object. With it, objects with __del __ () methods, as well as finally generators, can also be finalized when they are part of the “reference cycle”. According to the new scheme, the object finalizer is always called exactly once. In addition, for this PEP, you will not need to change something in the already written code - objects with existing finalizers will follow this behavior automatically.

Source: https://habr.com/ru/post/188956/


All Articles