42percent / 42percent_server

1 stars 0 forks source link

[Study] Python 3.7 Spec #23

Open pmw9027 opened 4 years ago

pmw9027 commented 4 years ago

주제

New Features Summary

the insertion-order preservation nature of dict objects has been declared to be an official part of the Python language spec.

Significant improvements in the standard library:

The asyncio module has received new features, significant usability and performance improvements.

The time module gained support for functions with nanosecond resolution.

CPython implementation improvements:

Avoiding the use of ASCII as a default text encoding:

PEP 538, legacy C locale coercion

PEP 540, forced UTF-8 runtime mode

PEP 552, deterministic .pycs

the new development runtime mode

PEP 565, improved DeprecationWarning handling

C API improvements:

PEP 539, new C API for thread-local storage

Documentation improvements:

PEP 545, Python documentation translations

New documentation translations: Japanese, French, and Korean.

This release features notable performance improvements in many areas. The Optimizations section lists them in detail.

For a list of changes that may affect compatibility with previous Python releases please refer to the Porting to Python 3.7 section.

Reference Sites