Re: PL/Python: Remove use of simple slicing API

2018-09-05 Thread Peter Eisentraut
On 29/08/2018 11:37, Peter Eisentraut wrote: > I have found some dying code in PL/Python. > > The simple slicing API (sq_slice, sq_ass_slice) has been deprecated > since Python 2.0 and has been removed altogether in Python 3, so we can > remove those functions from the PLyResult class. Instead,

PL/Python: Remove use of simple slicing API

2018-08-29 Thread Peter Eisentraut
& Services From 2676469f45fbc2a442a251d2b0ef8184b5cd5e2b Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 29 Aug 2018 11:10:17 +0200 Subject: [PATCH] PL/Python: Remove use of simple slicing API The simple slicing API (sq_slice, sq_ass_slice) has been deprecated since Python 2.0 and