cpython: b77916d2d7cc (original) (raw)
Mercurial > cpython
changeset 98023:b77916d2d7cc
Close issue25147: use C implementation of OrderedDict [#25147]
Ethan Furman ethan@stoneleaf.us | |
---|---|
date | Thu, 17 Sep 2015 22:03:52 -0700 |
parents | 87a9dff5106c |
children | c8689d3df68a |
files | Lib/enum.py |
diffstat | 1 files changed, 6 insertions(+), 1 deletions(-)[+] [-] Lib/enum.py 7 |
line wrap: on
line diff
--- a/Lib/enum.py +++ b/Lib/enum.py @@ -1,7 +1,12 @@ import sys -from collections import OrderedDict from types import MappingProxyType, DynamicClassAttribute +try: