From 2e576f5aec1f8f23f07001e2eb3db9276851a4fc Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Mon, 24 Apr 2017 09:05:00 +0300 Subject: bpo-30144: Import collections ABC from collections.abc rather than collections. (#1263) --- Lib/selectors.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Lib/selectors.py') diff --git a/Lib/selectors.py b/Lib/selectors.py index 89680a20a5..e7bc517730 100644 --- a/Lib/selectors.py +++ b/Lib/selectors.py @@ -6,7 +6,8 @@ This module allows high-level and efficient I/O multiplexing, built upon the from abc import ABCMeta, abstractmethod -from collections import namedtuple, Mapping +from collections import namedtuple +from collections.abc import Mapping import math import select import sys -- cgit v1.2.1