From a13225e209cfa5f7b458dbcbac19dc4df26feb95 Mon Sep 17 00:00:00 2001 From: terryjreedy Date: Sun, 11 Jun 2017 06:12:31 -0400 Subject: [PATCH] [3.6]bpo-30144: change idlelib abc import [GH-1263] (#2106) Part of patch by Serhiy Storchaka. (cherry-pick from 2e576f5) --- Lib/idlelib/pyparse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/idlelib/pyparse.py b/Lib/idlelib/pyparse.py index 6739dfd1a0..536b2d7f5f 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 -- 2.50.1