From 82f7f5a60e1d01b23283bc68b320fdbe5b99e437 Mon Sep 17 00:00:00 2001 From: lhchavez Date: Fri, 3 Jul 2020 14:49:23 -0700 Subject: [PATCH] Update the documentation for `Cursor` This change updates the documentation for `Cursor`, since it does not use `CursorWarningMixIn` anymore. --- doc/user_guide.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/doc/user_guide.rst b/doc/user_guide.rst index e52d0f79..83b800e8 100644 --- a/doc/user_guide.rst +++ b/doc/user_guide.rst @@ -674,10 +674,9 @@ CursorDictRowsMixIn Cursor The default cursor class. This class is composed of - ``CursorWarningMixIn``, ``CursorStoreResultMixIn``, - ``CursorTupleRowsMixIn,`` and ``BaseCursor``, i.e. it raises - ``Warning``, uses ``mysql_store_result()``, and returns rows as - tuples. + ``CursorStoreResultMixIn``, ``CursorTupleRowsMixIn``, and + ``BaseCursor``, i.e. uses ``mysql_store_result()`` and returns + rows as tuples. DictCursor Like ``Cursor`` except it returns rows as dictionaries.