Issue 45858: Deprecate default converters in sqlite3 (original) (raw)

Issue45858

Created on 2021-11-21 16:46 by iafisher, last changed 2022-04-11 14:59 by admin.

Messages (2)
msg406727 - (view) Author: Ian Fisher (iafisher) * Date: 2021-11-21 16:46
Per discussion at https://discuss.python.org/t/fixing-sqlite-timestamp-converter-to-handle-utc-offsets/, the default converters in SQLite3 have several bugs and are probably not worth continuing to maintain, so I propose deprecating them and removing them in a later version of Python. Since the converters are opt-in, this should not affect most users of SQLite3.
msg406728 - (view) Author: Ian Fisher (iafisher) * Date: 2021-11-21 16:47
See also bpo-26651 for a related proposal to deprecate the converter/adapter infrastructure entirely. The proposal in this bug is more limited: remove the default converters (though I think the default adapters should stay), but continue to allow users to define their own converters.
History
Date User Action Args
2022-04-11 14:59:52 admin set github: 90016
2021-11-22 06:16:52 Strongbeard set nosy: + Strongbeard
2021-11-21 18:53:54 ethan.furman set nosy: + ethan.furman
2021-11-21 16:47:21 iafisher set messages: +
2021-11-21 16:46:00 iafisher create