convert multiprocessing to unix line endings
diff --git a/Lib/multiprocessing/process.py b/Lib/multiprocessing/process.py
index 915d863..43d8297 100644
--- a/Lib/multiprocessing/process.py
+++ b/Lib/multiprocessing/process.py
@@ -47,7 +47,7 @@
     '''

     _cleanup()

     return list(_current_process._children)

-    

+

 #

 #

 #

@@ -69,7 +69,7 @@
     The class is analagous to `threading.Thread`

     '''

     _Popen = None

-    

+

     def __init__(self, group=None, target=None, name=None, args=(), kwargs={}):

         assert group is None, 'group argument must be None for now'

         count = _current_process._counter.next()

@@ -91,7 +91,7 @@
         '''

         if self._target:

             self._target(*self._args, **self._kwargs)

-            

+

     def start(self):

         '''

         Start child process

@@ -114,7 +114,7 @@
         Terminate process; sends SIGTERM signal or uses TerminateProcess()

         '''

         self._popen.terminate()

-        

+

     def join(self, timeout=None):

         '''

         Wait until child process terminates

@@ -217,11 +217,11 @@
                                    status, self._daemonic and ' daemon' or '')

 

     ##

-        

+

     def _bootstrap(self):

         from . import util

         global _current_process

-        

+

         try:

             self._children = set()

             self._counter = itertools.count(1)