Link to v4.0.0 changelog in FAQ
authorHarmon <Harmon758@gmail.com>
Sat, 23 Oct 2021 16:59:23 +0000 (11:59 -0500)
committerHarmon <Harmon758@gmail.com>
Sat, 23 Oct 2021 16:59:23 +0000 (11:59 -0500)
docs/faq.rst

index 9f5378fa0a1c572770f96744d2506394f65de6e5..3e94de073a389e162456a818c57edcbbc96d1c44 100644 (file)
@@ -65,9 +65,10 @@ Tweepy v4
 Why am I getting a :class:`TypeError` about an :class:`API` method taking 1 positional argument but given 2?
 ------------------------------------------------------------------------------------------------------------
 
-This and other similar errors are due to Tweepy v4.0.0 changing
-:class:`API` methods to no longer accept arbitrary positional arguments.
-The 1 positional argument being referred to in the error is ``self``.
+This and other similar errors are due to :ref:`Tweepy v4.0.0 <Version 4.0.0>`
+changing :class:`API` methods to no longer accept arbitrary positional
+arguments. The 1 positional argument being referred to in the error is
+``self``.
 
 These parameters can be passed as keyword arguments instead.
 
@@ -80,7 +81,8 @@ If you're attempting to import ``StreamListener`` with Tweepy v4, you'll get an
 :class:`AttributeError` about ``tweepy`` not having a ``StreamListener``
 attribute.
 
-This is because Tweepy v4.0.0 merged ``StreamListener`` into :class:`Stream`.
+This is because :ref:`Tweepy v4.0.0 <Version 4.0.0>` merged ``StreamListener``
+into :class:`Stream`.
 
 To use Tweepy v4, you'll need to update your code to subclass :class:`Stream`
 instead.