Hi,
The "fetchall()" command returns a list. Lists are mutable objects in python.
Could a valid implementation return the same list object (with different
contents) for multiple calls to fetchall() (with potentially different
preceding execute queries)?
e.g.
cursor.execute( """SELECT * FROM
Stefan C. Kremer wrote:
> Hi,
>
> The "fetchall()" command returns a list. Lists are mutable objects in
> python. Could a valid implementation return the same list object (with
> different contents) for multiple calls to fetchall() (with potentially
> different preceding execute queries)?
Th