convert multiprocessing to unix line endings
diff --git a/Lib/multiprocessing/reduction.py b/Lib/multiprocessing/reduction.py
index 0d6cf4f..17778ef 100644
--- a/Lib/multiprocessing/reduction.py
+++ b/Lib/multiprocessing/reduction.py
@@ -36,7 +36,7 @@
 if sys.platform == 'win32':

     import _subprocess

     from ._multiprocessing import win32

-    

+

     def send_handle(conn, handle, destination_pid):

         process_handle = win32.OpenProcess(

             win32.PROCESS_ALL_ACCESS, False, destination_pid

@@ -46,14 +46,14 @@
             conn.send(new_handle)

         finally:

             close(process_handle)

-            

+

     def recv_handle(conn):

         return conn.recv()

 

 else:

     def send_handle(conn, handle, destination_pid):

         _multiprocessing.sendfd(conn.fileno(), handle)

-        

+

     def recv_handle(conn):

         return _multiprocessing.recvfd(conn.fileno())

 

@@ -93,7 +93,7 @@
 

 def _serve():

     from .util import is_exiting, sub_warning

-    

+

     while 1:

         try:

             conn = _listener.accept()

@@ -109,7 +109,7 @@
                     'thread for sharing handles raised exception :\n' +

                     '-'*79 + '\n' + traceback.format_exc() + '-'*79

                     )

-    

+

 #

 # Functions to be used for pickling/unpickling objects with handles

 #

@@ -176,15 +176,15 @@
 #

 

 if sys.platform == 'win32':

-    

+

     def reduce_pipe_connection(conn):

         rh = reduce_handle(conn.fileno())

         return rebuild_pipe_connection, (rh, conn.readable, conn.writable)

-    

+

     def rebuild_pipe_connection(reduced_handle, readable, writable):

         handle = rebuild_handle(reduced_handle)

         return _multiprocessing.PipeConnection(

             handle, readable=readable, writable=writable

             )

-    

+

     copy_reg.pickle(_multiprocessing.PipeConnection, reduce_pipe_connection)