mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
Move OrderedDict sorting code to own function
This commit is contained in:
parent
926295449a
commit
b7455d3261
@ -27,6 +27,7 @@ def get_hash(item):
|
||||
repr_ = _recursive_repr(item).encode('utf-8')
|
||||
return hashlib.md5(repr_).hexdigest()
|
||||
|
||||
|
||||
def get_hash_int(item):
|
||||
return int(get_hash(item), base=16)
|
||||
|
||||
@ -41,3 +42,8 @@ def escape_chars(text, chars):
|
||||
for ch in chars:
|
||||
text = text.replace(ch, '\\' + ch)
|
||||
return text
|
||||
|
||||
|
||||
def sort_ordereddict(d):
|
||||
for key in sorted(d.keys()):
|
||||
d.move_to_end(key)
|
||||
|
@ -1,6 +1,6 @@
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from ._utils import get_hash, get_hash_int
|
||||
from ._utils import get_hash, get_hash_int, sort_ordereddict
|
||||
from builtins import object
|
||||
from collections import namedtuple, OrderedDict
|
||||
|
||||
@ -177,7 +177,6 @@ def topo_sort(downstream_nodes):
|
||||
|
||||
# Sort outgoing edge maps by upstream label
|
||||
for map in outgoing_edge_maps.values():
|
||||
for label in sorted(map.keys()):
|
||||
map.move_to_end(label)
|
||||
sort_ordereddict(map)
|
||||
|
||||
return sorted_nodes, outgoing_edge_maps
|
||||
|
Loading…
x
Reference in New Issue
Block a user