Commit c791507e authored by Ethan Furman's avatar Ethan Furman

Issue 25147: add reason for using _collections

parent b134a2a5
import sys
from types import MappingProxyType, DynamicClassAttribute
# try _collections first to reduce startup cost
try:
from _collections import OrderedDict
except ImportError:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment