Issue 2334: Use compatibility versions of collections.User{Dict,List,String}
[scons.git] / src / engine / SCons / Util.py
index 4ada27361880149dffd0448a0b47cb9c6f746ad7..e88a90b759e7e45b44fe845bf9782c1cf5f4f172 100644 (file)
@@ -36,9 +36,7 @@ import re
 import sys
 import types
 
-from UserDict import UserDict
-from UserList import UserList
-from UserString import UserString
+from collections import UserDict, UserList, UserString
 
 # Don't "from types import ..." these because we need to get at the
 # types module later to look for UnicodeType.