From 510ab50ba7058c608edf758b279c41aec5913387 Mon Sep 17 00:00:00 2001 From: Anthony Tuininga Date: Tue, 19 Jun 2018 11:08:04 -0600 Subject: [PATCH] Remove mention of the next() method which is only there in Python 2.x if the cursor is being used as an iterator and is not actually part of cx_Oracle's code. --- doc/src/cursor.rst | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/doc/src/cursor.rst b/doc/src/cursor.rst index 6b34a42..b76b07f 100644 --- a/doc/src/cursor.rst +++ b/doc/src/cursor.rst @@ -360,17 +360,6 @@ Cursor Object mentioned in PEP 249 as an optional extension. -.. method:: Cursor.next() - - Fetch the next row of a query result set, using the same semantics as the - method fetchone(). - - .. note:: - - This method is an extension to the DB API definition but it is - mentioned in PEP 249 as an optional extension. - - .. attribute:: Cursor.outputtypehandler This read-write attribute specifies a method called for each column that is