docs/streaming_how_to.rst: Update 'async' to 'is_async' for Python >= 3.7
authorcclauss <3709715+cclauss@users.noreply.github.com>
Sat, 22 Dec 2018 13:38:52 +0000 (14:38 +0100)
committerGitHub <noreply@github.com>
Sat, 22 Dec 2018 13:38:52 +0000 (14:38 +0100)
'__async__' is a reserved word in Python >= 3.7 so the current call is a syntax error.

docs/streaming_how_to.rst

index 641d06fdd4e12df5c631efed5d4f00fbdebdce2f..1e6f8a475cc53512635a68a62196c2e45787603f 100644 (file)
@@ -15,7 +15,7 @@ by offering a first walk through.  Some features of Tweepy streaming are
 not covered here. See streaming.py in the Tweepy source code. 
 
 API authorization is required to access Twitter streams. 
-Follow the :ref:`auth_tutorial` if you need help with authentication. 
+Follow the :ref:`auth_tutorial` if you need help wfith authentication. 
 
 Summary
 =======
@@ -93,10 +93,10 @@ A Few More Pointers
 Async Streaming
 ---------------
 Streams do not terminate unless the connection is closed, blocking the thread. 
-Tweepy offers a convenient **async** parameter on **filter** so the stream will run on a new
+Tweepy offers a convenient **is_async** parameter on **filter** so the stream will run on a new
 thread. For example ::
 
-  myStream.filter(track=['python'], async=True)
+  myStream.filter(track=['python'], is_async=True)
 
 Handling Errors
 ---------------