Python 3.5 最初のベータ版 Python 3.5.0 b1 がリリースされました。
Python 3.5では、新たなコンテナ展開の表記方法、@ 演算子、async キーワードなど、Python言語に大きな機能追加が行われます。新機能をしっかり確認しておきましょう。
Python 3.5で追加される主な機能
PEP 448 additional unpacking generalizations
PEP 461 adding support for "%-formatting" for bytes and bytearray objects
PEP 465 a new operator (@) for matrix multiplication
PEP 471 os.scandir(), a faster alternative to os.walk()
PEP 475 adding support for automatic retries of interrupted system calls
PEP 479 change StopIteration handling inside generators
PEP 484 the typing module, a new standard for type annotations
PEP 486 making the Windows Python launcher aware of virtual environments
PEP 488 eliminating .pyo files
PEP 489 multi-phase extension module initialization
PEP 492 coroutines with async and await syntax