summaryrefslogtreecommitdiffstats
path: root/Lib/os.py
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-10-13 00:04:20 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-10-13 00:04:20 (GMT)
commitf1dc3ee16dbc81d7f91fd844c5dfcb0fd1a06500 (patch)
treef29fbbb86d3b40e738c2ab220d0a27cacf66d383 /Lib/os.py
parentad9c9bb5a93fe922dd5768ab4e84eed96d72083c (diff)
downloadcpython-f1dc3ee16dbc81d7f91fd844c5dfcb0fd1a06500.zip
cpython-f1dc3ee16dbc81d7f91fd844c5dfcb0fd1a06500.tar.gz
cpython-f1dc3ee16dbc81d7f91fd844c5dfcb0fd1a06500.tar.bz2
Issue #19218: Rename collections.abc to _collections_abc in order to speed up interpreter start
Diffstat (limited to 'Lib/os.py')
-rw-r--r--Lib/os.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/os.py b/Lib/os.py
index 1b1ce18..e9880a1 100644
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -631,7 +631,7 @@ def get_exec_path(env=None):
# Change environ to automatically call putenv(), unsetenv if they exist.
-from collections.abc import MutableMapping
+from _collections_abc import MutableMapping
class _Environ(MutableMapping):
def __init__(self, data, encodekey, decodekey, encodevalue, decodevalue, putenv, unsetenv):