Lines Matching full:processors
39 processors = "Ordered dictionary of processing functions.",
44 def _make_processing_pipeline(processors = dict(), finalize = None):
48 processors: Ordered dictionary of processing functions.
55 processors = processors,
78 for execute in processing_pipeline.processors.values():
91 def _prepend(processors, **new_processors):
92 """Prepends processors in a given processing pipeline.
95 processors: The dictionary representing the processing pipeline.
96 **new_processors: The processors to add where the key represents the
107 for key in processors.keys():
108 updated_processors[key] = processors[key]
112 def _append(processors, **new_processors):
113 """Appends processors in a given processing pipeline.
116 processors: The dictionary representing the processing pipeline.
117 **new_processors: The processors to append where the key represents the
124 updated_processors = dict(processors)
130 def _replace(processors, **new_processors):
131 """Replace processors in a given processing pipeline.
134 processors: The dictionary representing the processing pipeline.
135 **new_processors: The processors to override where the key represents the
142 updated_processors = dict(processors)
144 if name not in processors:
149 # between other processors, the processing pipeline dictionary will need