It turns out Python 3.2 now honors closing sqlite connections opened
in another module. Previous versions allowed you to have identically
named sqlite connections open in other modules. Python 3.2 apparently
treats them all as the same connection.
Hopefully some other victim will find this, becaus
I installed Python 3.2, suddenly getting an error on my sqlite pages
(CGI):
ProgrammingError: Cannot operate on a closed cursor
Works normally in interactive mode. Seems to error when the sqlite
statement is in a function. Are sqlite objects now required to be
declared global?
-- Gnarlie
--
htt