Searched refs:ForkingPickler (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython2/Lib/multiprocessing/ |
D | forking.py | 60 class ForkingPickler(Pickler): class 75 ForkingPickler.register(type(ForkingPickler.save), _reduce_method) 79 ForkingPickler.register(type(list.append), _reduce_method_descriptor) 80 ForkingPickler.register(type(int.__add__), _reduce_method_descriptor) 96 ForkingPickler.register(partial, _reduce_partial) 199 ForkingPickler(file, protocol).dump(obj) 433 ForkingPickler.register(Connection, reduce_connection) 434 ForkingPickler.register(PipeConnection, reduce_connection)
|
D | reduction.py | 45 from multiprocessing.forking import Popen, duplicate, close, ForkingPickler 175 ForkingPickler.register(_multiprocessing.Connection, reduce_connection) 197 ForkingPickler.register(socket.socket, reduce_socket) 215 ForkingPickler.register(_multiprocessing.PipeConnection, reduce_pipe_connection)
|
D | sharedctypes.py | 40 from multiprocessing.forking import assert_spawning, ForkingPickler 168 ForkingPickler.register(type_, reduce_ctype)
|
D | managers.py | 52 from multiprocessing.forking import exit, Popen, assert_spawning, ForkingPickler 66 ForkingPickler.register(array.array, reduce_array)
|
/external/python/cpython3/Lib/multiprocessing/ |
D | reduction.py | 33 class ForkingPickler(pickle.Pickler): class 56 register = ForkingPickler.register 60 ForkingPickler(file, protocol).dump(obj) 248 ForkingPickler = ForkingPickler variable in AbstractReducer
|
D | sharedctypes.py | 17 _ForkingPickler = reduction.ForkingPickler
|
D | queues.py | 26 _ForkingPickler = context.reduction.ForkingPickler
|
D | connection.py | 27 _ForkingPickler = reduction.ForkingPickler
|
/external/python/cpython2/Misc/ |
D | NEWS | 9568 ForkingPickler.register() to resolve conflict with ctypes.
|