maintainer-feedback requested: [Bug 265537] databases/py-sqlite3: Fix runtime error with lang/python311

From: <bugzilla-noreply_at_freebsd.org>
Date: Sun, 31 Jul 2022 16:21:31 UTC
Bugzilla Automation <bugzilla@FreeBSD.org> has asked freebsd-python (Nobody)
<python@FreeBSD.org> for maintainer-feedback:
Bug 265537: databases/py-sqlite3: Fix runtime error with lang/python311
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=265537



--- Description ---
% python3.11 -c 'import sqlite3'
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/local/lib/python3.11/sqlite3/__init__.py", line 57, in <module>
    from sqlite3.dbapi2 import *
  File "/usr/local/lib/python3.11/sqlite3/dbapi2.py", line 27, in <module>
    from _sqlite3 import *
ImportError: /usr/local/lib/python3.11/lib-dynload/_sqlite3.cpython-311.so:
Undefined symbol "pysqlite_close_all_blobs"

_sqlite/blob.c was introduced by this commit and only affects lang/python311
https://github.com/python/cpython/commit/ee475430d431814cbb6eb5e8a6c0ae51943349
d4