Kaydet (Commit) e5754ab0 authored tarafından Ethan Furman's avatar Ethan Furman

Close issue25147: use C implementation of OrderedDict

üst 6db1fd5f
import sys
from collections import OrderedDict
from types import MappingProxyType, DynamicClassAttribute
try:
from _collections import OrderedDict
except ImportError:
from collections import OrderedDict
__all__ = ['Enum', 'IntEnum', 'unique']
......
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