Skip to content

Commit

Permalink
Merge pull request #1143 from cclauss/patch-1
Browse files Browse the repository at this point in the history
streaming_how_to.rst: 'async' --> 'is_async' for Python 3.7
  • Loading branch information
joshthecoder committed Mar 20, 2019
2 parents f5333ad + 86c2648 commit 91691b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/streaming_how_to.rst
Expand Up @@ -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
---------------
Expand Down

0 comments on commit 91691b7

Please sign in to comment.