Browse Source

Issue 25147: add reason for using _collections

pull/9921/head
Ethan Furman 11 years ago
parent
commit
c791507e1f
  1. 1
      Lib/enum.py

1
Lib/enum.py

@ -1,6 +1,7 @@
import sys
from types import MappingProxyType, DynamicClassAttribute
# try _collections first to reduce startup cost
try:
from _collections import OrderedDict
except ImportError:

Loading…
Cancel
Save