From a12f9b9901a5da711fe4bd21a181540f99bb9b97 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Mon, 28 Nov 2016 23:29:59 +0000 Subject: [PATCH] Add py2.7.11 unicode fix info for array.array() to stdlib_incompatibilities.rst --- docs/stdlib_incompatibilities.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/stdlib_incompatibilities.rst b/docs/stdlib_incompatibilities.rst index e5129253..38eeaa88 100644 --- a/docs/stdlib_incompatibilities.rst +++ b/docs/stdlib_incompatibilities.rst @@ -57,6 +57,9 @@ You can use the following code on both Python 3 and Python 2:: a = array.array(bytes_to_native_str(b'b')) +This was `fixed in Python 2.7.11 +`_. +Since then, ``array.array()`` now also accepts unicode format typecode. .. _stdlib-array-read: