[issue43059] sqlite3: Externally developed?
New submission from user1347091 : In the documentation of the sqlite3 module it says: See also: https://github.com/ghaering/pysqlite The pysqlite web page – sqlite3 is developed externally under the name “pysqlite”. However, the README.md of the linked repository says: This project is not actively maintained any more: You are better off using the "sqlite3" module in the Python standard library, which originated from the pysqlite codebase. Which information is correct? They seem contraticting to me. It looks like this is old information from times where sqlite3 wasn't integrated in the Python standard library yet - or am I missing something? -- assignee: docs@python components: Documentation messages: 385884 nosy: docs@python, user1347091 priority: normal severity: normal status: open title: sqlite3: Externally developed? type: enhancement versions: Python 3.10 ___ Python tracker <https://bugs.python.org/issue43059> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue43059] sqlite3: Externally developed?
user1347091 added the comment: The documentation page in question is the following: https://docs.python.org/3.10/library/sqlite3.html (Sorry, I forgot to add this information to my original post) -- ___ Python tracker <https://bugs.python.org/issue43059> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue43059] sqlite3: Externally developed?
user1347091 added the comment: At least in Python 3.9.1, these commands still exist: Python 3.9.1 (default, Dec 13 2020, 11:55:53) [GCC 10.2.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import sqlite3 >>> sqlite3.version '2.6.0' >>> sqlite3.version_info (2, 6, 0) So if they are obsolete as well, they should be removed from cpython as well, and not only from the documentation. I have created a pull request for the obsolete link, and I'd be happy to take care of this as well if we decide to do so. -- ___ Python tracker <https://bugs.python.org/issue43059> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com