Home | History | Annotate | Download | only in library

Lines Matching full:dispatch_table

320    .. attribute:: dispatch_table
331 :attr:`dispatch_table` attribute, and it will instead use the
334 one can set the :attr:`dispatch_table` attribute to a dict-like
336 :attr:`dispatch_table` attribute then this will be used as the
674 available as :data:`copyreg.dispatch_table`. Therefore, one may
675 choose to use a modified copy of :data:`copyreg.dispatch_table` as a
682 p.dispatch_table = copyreg.dispatch_table.copy()
683 p.dispatch_table[SomeClass] = reduce_SomeClass
690 dispatch_table = copyreg.dispatch_table.copy()
691 dispatch_table[SomeClass] = reduce_SomeClass