From b6862b981a6fa3b5505b89096c8c5c7b7c474e36 Mon Sep 17 00:00:00 2001 From: elad-aharon <137701473+elad-aharon@users.noreply.github.com> Date: Wed, 5 Feb 2025 15:06:26 +0200 Subject: [PATCH] Update Connecting_and_queries.rst cursor.fetchall() example was written twice in docs --- docsrc/Connecting_and_queries.rst | 5 ----- 1 file changed, 5 deletions(-) diff --git a/docsrc/Connecting_and_queries.rst b/docsrc/Connecting_and_queries.rst index 406ea95303..021a380a16 100644 --- a/docsrc/Connecting_and_queries.rst +++ b/docsrc/Connecting_and_queries.rst @@ -224,11 +224,6 @@ below use the data queried from ``test_table`` created in the **Returns**: ``[[2, 'world'], [1, 'hello'], [3, '!']]`` - :: - - print(cursor.fetchall()) - - **Returns**: ``[[2, 'world'], [1, 'hello'], [3, '!']]`` Fetching query result information -----------------------