pgsql: doc: Fix example with __next__() in PL/Python function - Mailing list pgsql-committers

From Michael Paquier
Subject pgsql: doc: Fix example with __next__() in PL/Python function
Date
Msg-id E1tFMm9-003Nsl-LX@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
doc: Fix example with __next__() in PL/Python function

Per PEP 3114, iterator.next() has been renamed to iterator.__next__(),
and one example in the documentation still used next().  This caused the
example provided to fail the function creation since Python 2 is not
supported anymore since 19252e8ec93.

Author: Erik Wienhold
Discussion: https://postgr.es/m/173209043143.2092749.13692266486972491694@wrigleys.postgresql.org
Backpatch-through: 15

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/2ff7c913d92d8540e8b00c54746ce2f565521256

Modified Files
--------------
doc/src/sgml/plpython.sgml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)


pgsql-committers by date:

Previous
From: Noah Misch
Date:
Subject: pgsql: Test "options=-crole=" and "ALTER DATABASE SET role".
Next
From: Michael Paquier
Date:
Subject: pgsql: Simplify some SPI tests of PL/Python