mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
Allow extra, unhashed objects to be added to the incoming_edge_map
This commit is contained in:
parent
6de40d80c5
commit
273cf8f205
@ -42,6 +42,7 @@ class DagNode(object):
|
|||||||
|
|
||||||
Again, because nodes are immutable, the string representations should remain constant.
|
Again, because nodes are immutable, the string representations should remain constant.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __hash__(self):
|
def __hash__(self):
|
||||||
"""Return an integer hash of the node."""
|
"""Return an integer hash of the node."""
|
||||||
raise NotImplementedError()
|
raise NotImplementedError()
|
||||||
@ -90,10 +91,12 @@ def get_outgoing_edges(upstream_node, outgoing_edge_map):
|
|||||||
class KwargReprNode(DagNode):
|
class KwargReprNode(DagNode):
|
||||||
"""A DagNode that can be represented as a set of args+kwargs.
|
"""A DagNode that can be represented as a set of args+kwargs.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def __upstream_hashes(self):
|
def __upstream_hashes(self):
|
||||||
hashes = []
|
hashes = []
|
||||||
for downstream_label, (upstream_node, upstream_label) in list(self.incoming_edge_map.items()):
|
# This is needed to allow extra stuff in the incoming_edge_map's value tuples
|
||||||
|
for downstream_label, (upstream_node, upstream_label) in [(i[0], i[1][:2]) for i in self.incoming_edge_map.items()]:
|
||||||
hashes += [hash(x) for x in [downstream_label, upstream_node, upstream_label]]
|
hashes += [hash(x) for x in [downstream_label, upstream_node, upstream_label]]
|
||||||
return hashes
|
return hashes
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user