[issue43059] sqlite3: Externally developed?

2021-01-30 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: mock also broke similar package on removing __version__. See also https://bugs.python.org/issue31826 -- nosy: +xtreak ___ Python tracker _

[issue43059] sqlite3: Externally developed?

2021-01-30 Thread Berker Peksag
Berker Peksag added the comment: Yes, version attributes should be deprecated and properly documented in Doc/whatsnew/3.10.rst before removal. I remember we broke Mailman when we removed a dunder attribute from the mail package. Thank you for the PR! -- resolution: -> fixed stage:

[issue43059] sqlite3: Externally developed?

2021-01-30 Thread Berker Peksag
Berker Peksag added the comment: New changeset de76ce540ed013a31d4c80bca2587a2dd7c23652 by Miss Islington (bot) in branch '3.8': bpo-43059: Remove reference to legacy external sqlite3 repository (GH-24364) https://github.com/python/cpython/commit/de76ce540ed013a31d4c80bca2587a2dd7c23652 ---

[issue43059] sqlite3: Externally developed?

2021-01-30 Thread Berker Peksag
Berker Peksag added the comment: New changeset 926ca51be4b9b80c41a647bbc2fb9c40ff108ff0 by Miss Islington (bot) in branch '3.9': bpo-43059: Remove reference to legacy external sqlite3 repository (GH-24364) https://github.com/python/cpython/commit/926ca51be4b9b80c41a647bbc2fb9c40ff108ff0 ---

[issue43059] sqlite3: Externally developed?

2021-01-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +23207 pull_request: https://github.com/python/cpython/pull/24393 ___ Python tracker ___ __

[issue43059] sqlite3: Externally developed?

2021-01-30 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 7.0 -> 8.0 pull_requests: +23206 pull_request: https://github.com/python/cpython/pull/24392 ___ Python tracker _

[issue43059] sqlite3: Externally developed?

2021-01-30 Thread Berker Peksag
Berker Peksag added the comment: New changeset e60344364245a23a7a1b25d5ebce6833652a656c by L in branch 'master': bpo-43059: Remove reference to legacy external sqlite3 repository (GH-24364) https://github.com/python/cpython/commit/e60344364245a23a7a1b25d5ebce6833652a656c --

[issue43059] sqlite3: Externally developed?

2021-01-28 Thread Erlend Egeberg Aasland
Erlend Egeberg Aasland added the comment: > Before removing public documented attribute it should be deprecated. Of course. > […], I have a large patch for removing obsolete version attributes in process. Great! -- ___ Python tracker

[issue43059] sqlite3: Externally developed?

2021-01-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Before removing public documented attribute it should be deprecated. Don't haste with this, I have a large patch for removing obsolete version attributes in process. -- nosy: +serhiy.storchaka ___ Python tracker

[issue43059] sqlite3: Externally developed?

2021-01-28 Thread user1347091
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'

[issue43059] sqlite3: Externally developed?

2021-01-28 Thread Erlend Egeberg Aasland
Erlend Egeberg Aasland added the comment: Perhaps we should remove the (pysqlite) version attributes while we're there? Ref. https://mail.python.org/archives/list/python-...@python.org/message/NS6YVA3QCAXELK7KROOLULKXOF3KFFJA/ >>> import sqlite3 >>> sqlite3.version '2.6.0' >>> sqlite3.versio

[issue43059] sqlite3: Externally developed?

2021-01-28 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch nosy: +python-dev nosy_count: 5.0 -> 6.0 pull_requests: +23186 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24364 ___ Python tracker _

[issue43059] sqlite3: Externally developed?

2021-01-28 Thread Zachary Ware
Zachary Ware added the comment: Looks like that link could be safely removed from our docs. Would you like to submit a pull request doing so? -- nosy: +berker.peksag, erlendaasland, zach.ware ___ Python tracker

[issue43059] sqlite3: Externally developed?

2021-01-28 Thread user1347091
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

[issue43059] sqlite3: Externally developed?

2021-01-28 Thread user1347091
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 projec