summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPawel Polewicz <p.polewicz@gmail.com>2016-09-27 12:51:56 +0200
committerPawel Polewicz <p.polewicz@gmail.com>2016-09-27 12:51:56 +0200
commita9009be55a980d29c8ff34b02d27ad7799353fd0 (patch)
tree747280e47d304ffd13f8dc693a3505e58d84d70a
parent3181afe358dabe625b484e879132466c9ac385e7 (diff)
Apply review comment
-rw-r--r--frozendict/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/frozendict/__init__.py b/frozendict/__init__.py
index 2a6923a..1d77400 100644
--- a/frozendict/__init__.py
+++ b/frozendict/__init__.py
@@ -56,5 +56,5 @@ class FrozenOrderedDict(frozendict):
dict_cls = OrderedDict
-if sys.version >= (2, 7):
+if OrderedDict is NotImplemented:
del FrozenOrderedDict