python: Remove scripts/ordereddict.py

Python 2.7 (the minimum Python version we require) provides
collections.OrderedDict on the standard library, so we don't need
to carry our own implementation.

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Message-Id: <20180608175252.25110-3-ehabkost@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
Eduardo Habkost 2018-06-08 14:52:52 -03:00
parent 7f5ed8c997
commit c788341244
4 changed files with 1 additions and 134 deletions

View file

@ -16,10 +16,7 @@ import errno
import os
import re
import string
try:
from collections import OrderedDict
except:
from ordereddict import OrderedDict
from collections import OrderedDict
builtin_types = {
'null': 'QTYPE_QNULL',