summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/pyparse.py
diff options
context:
space:
mode:
authorterryjreedy <tjreedy@udel.edu>2017-06-11 10:12:31 (GMT)
committerGitHub <noreply@github.com>2017-06-11 10:12:31 (GMT)
commita13225e209cfa5f7b458dbcbac19dc4df26feb95 (patch)
treee773599cda3fea1dca5f12671fa80c445984d09d /Lib/idlelib/pyparse.py
parentc6696feb09a8cf13e13e42ed9cc0b8c2e8795800 (diff)
downloadcpython-a13225e209cfa5f7b458dbcbac19dc4df26feb95.zip
cpython-a13225e209cfa5f7b458dbcbac19dc4df26feb95.tar.gz
cpython-a13225e209cfa5f7b458dbcbac19dc4df26feb95.tar.bz2
[3.6]bpo-30144: change idlelib abc import [GH-1263] (#2106)
Part of patch by Serhiy Storchaka. (cherry-pick from 2e576f5)
Diffstat (limited to 'Lib/idlelib/pyparse.py')
-rw-r--r--Lib/idlelib/pyparse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/pyparse.py b/Lib/idlelib/pyparse.py
index 6739dfd..536b2d7 100644
--- a/Lib/idlelib/pyparse.py
+++ b/Lib/idlelib/pyparse.py
@@ -1,4 +1,4 @@
-from collections import Mapping
+from collections.abc import Mapping
import re
import sys