diff options
| author | Raymond Hettinger <python@rcn.com> | 2011-02-23 00:46:28 +0000 |
|---|---|---|
| committer | Raymond Hettinger <python@rcn.com> | 2011-02-23 00:46:28 +0000 |
| commit | 57d1a887e7f99d596a9b083592f7734f7ee1a11c (patch) | |
| tree | 81ff8ffa4529a16aef99084eb124b264888012e0 /Lib/test/support.py | |
| parent | bd475115c4fb0dda55f3d1f4443bff58abd1203f (diff) | |
| download | cpython-git-57d1a887e7f99d596a9b083592f7734f7ee1a11c.tar.gz | |
Fix imports from collections.abc
Diffstat (limited to 'Lib/test/support.py')
| -rw-r--r-- | Lib/test/support.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/support.py b/Lib/test/support.py index 9300aaebea..63c5569156 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.""" |
