revert r66114 for Jesse
diff --git a/Lib/multiprocessing/synchronize.py b/Lib/multiprocessing/synchronize.py
index 3e21dfe..428656a 100644
--- a/Lib/multiprocessing/synchronize.py
+++ b/Lib/multiprocessing/synchronize.py
@@ -65,9 +65,7 @@
 #
 
 class Semaphore(SemLock):
-    '''
-    A semaphore object
-    '''
+
     def __init__(self, value=1):
         SemLock.__init__(self, SEMAPHORE, value, SEM_VALUE_MAX)
 
@@ -86,9 +84,7 @@
 #
 
 class BoundedSemaphore(Semaphore):
-    '''
-    A bounded semaphore object
-    '''
+
     def __init__(self, value=1):
         SemLock.__init__(self, SEMAPHORE, value, value)
 
@@ -105,9 +101,7 @@
 #
 
 class Lock(SemLock):
-    '''
-    A non-recursive lock object
-    '''
+
     def __init__(self):
         SemLock.__init__(self, SEMAPHORE, 1, 1)
 
@@ -132,9 +126,7 @@
 #
 
 class RLock(SemLock):
-    '''
-    A recursive lock object
-    '''
+
     def __init__(self):
         SemLock.__init__(self, RECURSIVE_MUTEX, 1, 1)
 
@@ -160,9 +152,6 @@
 #
 
 class Condition(object):
-    '''
-    A condition object
-    '''
 
     def __init__(self, lock=None):
         self._lock = lock or RLock()
@@ -263,9 +252,7 @@
 #
 
 class Event(object):
-    '''
-    An event object
-    '''
+
     def __init__(self):
         self._cond = Condition(Lock())
         self._flag = Semaphore(0)