|
2 | 2 | Python News
|
3 | 3 | +++++++++++
|
4 | 4 |
|
| 5 | +What's New in Python 3.6.2 release candidate 1? |
| 6 | +=============================================== |
| 7 | + |
| 8 | +*Release date: XXXX-XX-XX* |
| 9 | + |
| 10 | +Core and Builtins |
| 11 | +----------------- |
| 12 | + |
| 13 | +- bpo-29859: Show correct error messages when any of the pthread_* calls in |
| 14 | + thread_pthread.h fails. |
| 15 | + |
| 16 | +- bpo-28876: ``bool(range)`` works even if ``len(range)`` |
| 17 | + raises :exc:`OverflowError`. |
| 18 | + |
| 19 | +- bpo-29600: Fix wrapping coroutine return values in StopIteration. |
| 20 | + |
| 21 | +- bpo-28856: Fix an oversight that %b format for bytes should support objects |
| 22 | + follow the buffer protocol. |
| 23 | + |
| 24 | +- bpo-29714: Fix a regression that bytes format may fail when containing zero |
| 25 | + bytes inside. |
| 26 | + |
| 27 | +Library |
| 28 | +------- |
| 29 | + |
| 30 | +- bpo-25455: Fixed crashes in repr of recursive buffered file-like objects. |
| 31 | + |
| 32 | +- bpo-29800: Fix crashes in partial.__repr__ if the keys of partial.keywords |
| 33 | + are not strings. Patch by Michael Seifert. |
| 34 | + |
| 35 | +- bpo-29742: get_extra_info() raises exception if get called on closed ssl transport. |
| 36 | + Patch by Nikolay Kim. |
| 37 | + |
| 38 | +- bpo-8256: Fixed possible failing or crashing input() if attributes "encoding" |
| 39 | + or "errors" of sys.stdin or sys.stdout are not set or are not strings. |
| 40 | + |
| 41 | +- bpo-28298: Fix a bug that prevented array 'Q', 'L' and 'I' from accepting big |
| 42 | + intables (objects that have __int__) as elements. Patch by Oren Milman. |
| 43 | + |
| 44 | +- bpo-28231: The zipfile module now accepts path-like objects for external |
| 45 | + paths. |
| 46 | + |
| 47 | +- bpo-26915: index() and count() methods of collections.abc.Sequence now |
| 48 | + check identity before checking equality when do comparisons. |
| 49 | + |
| 50 | +- bpo-29615: SimpleXMLRPCDispatcher no longer chains KeyError (or any other |
| 51 | + exception) to exception(s) raised in the dispatched methods. |
| 52 | + Patch by Petr Motejlek. |
| 53 | + |
| 54 | + |
5 | 55 | What's New in Python 3.6.1?
|
6 | 56 | ===========================
|
7 | 57 |
|
|
0 commit comments