summaryrefslogtreecommitdiffstats
path: root/Lib/test/support.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-02-23 00:46:28 (GMT)
committerRaymond Hettinger <python@rcn.com>2011-02-23 00:46:28 (GMT)
commit57d1a887e7f99d596a9b083592f7734f7ee1a11c (patch)
tree81ff8ffa4529a16aef99084eb124b264888012e0 /Lib/test/support.py
parentbd475115c4fb0dda55f3d1f4443bff58abd1203f (diff)
downloadcpython-57d1a887e7f99d596a9b083592f7734f7ee1a11c.zip
cpython-57d1a887e7f99d596a9b083592f7734f7ee1a11c.tar.gz
cpython-57d1a887e7f99d596a9b083592f7734f7ee1a11c.tar.bz2
Fix imports from collections.abc
Diffstat (limited to 'Lib/test/support.py')
-rw-r--r--Lib/test/support.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/support.py b/Lib/test/support.py
index 9300aae..63c5569 100644
--- a/Lib/test/support.py
+++ b/Lib/test/support.py
@@ -15,7 +15,7 @@ import shutil
import warnings
import unittest
import importlib
-import collections
+import collections.abc
import re
import subprocess
import imp
@@ -682,7 +682,7 @@ class CleanImport(object):
sys.modules.update(self.original_modules)
-class EnvironmentVarGuard(collections.MutableMapping):
+class EnvironmentVarGuard(collections.abc.MutableMapping):
"""Class to help protect the environment variable properly. Can be used as
a context manager."""