Re: [DB-SIG] DB-API 2.0 Update: Replacing StandardError with Exception

2022-09-06 Thread Marc-Andre Lemburg
On 02.09.2022 16:28, Marc-Andre Lemburg wrote: Hi all, an issue was pointed out at: https://github.com/python/peps/issues/2776 with the PEP 249 - Python Database API 2.0. At the time we were creating the standard in 1999, the default base class for errors was the StandardError exception class.

[DB-SIG] DB-API 2.0 Update: Replacing StandardError with Exception

2022-09-02 Thread Marc-Andre Lemburg
Hi all, an issue was pointed out at: https://github.com/python/peps/issues/2776 with the PEP 249 - Python Database API 2.0. At the time we were creating the standard in 1999, the default base class for errors was the StandardError exception class. In Python 3, StandardError was removed, since