summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-11-16 07:16:24 (GMT)
committerGitHub <noreply@github.com>2017-11-16 07:16:24 (GMT)
commit0a2abdfca2495291809855cf7dfc6721c9c962e3 (patch)
tree7eabd56d628252e631bc5f44dc9e4e78bd764945 /Misc
parenta7368ac6360246b1ef7f8f152963c2362d272183 (diff)
downloadcpython-0a2abdfca2495291809855cf7dfc6721c9c962e3.zip
cpython-0a2abdfca2495291809855cf7dfc6721c9c962e3.tar.gz
cpython-0a2abdfca2495291809855cf7dfc6721c9c962e3.tar.bz2
bpo-30143: 2to3 now generates a code that uses abstract collection classes (#1262)
from collections.abc rather than collections.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2017-10-12-19-05-54.bpo-30143.25_hU1.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-10-12-19-05-54.bpo-30143.25_hU1.rst b/Misc/NEWS.d/next/Library/2017-10-12-19-05-54.bpo-30143.25_hU1.rst
new file mode 100644
index 0000000..a1f8312
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-10-12-19-05-54.bpo-30143.25_hU1.rst
@@ -0,0 +1,2 @@
+2to3 now generates a code that uses abstract collection classes from
+collections.abc rather than collections.