Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
34 lines (23 loc) · 794 Bytes

File metadata and controls

34 lines (23 loc) · 794 Bytes
Copy raw file
Download raw file
Outline
Edit and raw actions

Why Python 3?

  • Python 2.7 is the final Python 2.x release. Python 3.x is the future. The Python ecosystem needs to consolidate. A split or schism between different incompatible versions is not healthy for growing the community.
  • Function annotations
  • Decimal module 100x faster. As fast as floats.
  • Easier to learn. (Less cruft in language and stdlib, more consistency, better docstrings, etc.)
  • Much safer handling of unicode text and encodings: fewer bugs.
  • More memory efficiency (shared dict keys (PEP 412) and space-efficient Unicode representation (PEP 393))
  • Exception chaining

New features

Standard library:

  • SSL contexts in http.client

Non-arguments for Python 3

Morty Proxy This is a proxified and sanitized view of the page, visit original site.