Stop generating pydoc since we switched to using epydoc. Regenerate all docs.
diff --git a/oauth2client/client.py b/oauth2client/client.py
index d8eaf69..e8e9001 100644
--- a/oauth2client/client.py
+++ b/oauth2client/client.py
@@ -745,9 +745,13 @@
   class SignedJwtAssertionCredentials(AssertionCredentials):
     """Credentials object used for OAuth 2.0 Signed JWT assertion grants.
 
-    This credential does not require a flow to instantiate because it
-    represents a two legged flow, and therefore has all of the required
-    information to generate and refresh its own access tokens.
+    This credential does not require a flow to instantiate because it represents
+    a two legged flow, and therefore has all of the required information to
+    generate and refresh its own access tokens.
+
+    SignedJwtAssertionCredentials requires PyOpenSSL and because of that it does
+    not work on App Engine. For App Engine you may consider using
+    AppAssertionCredentials.
     """
 
     MAX_TOKEN_LIFETIME_SECS = 3600 # 1 hour in seconds
@@ -829,6 +833,9 @@
       cert_uri=ID_TOKEN_VERIFICATON_CERTS):
     """Verifies a signed JWT id_token.
 
+    This function requires PyOpenSSL and because of that it does not work on
+    App Engine. For App Engine you may consider using AppAssertionCredentials.
+
     Args:
       id_token: string, A Signed JWT.
       audience: string, The audience 'aud' that the token should be for.