This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Update news.gmane.org to news.gmane.io
Type: Stage: resolved
Components: Library (Lib), Tests Versions: Python 3.9, Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: corona10, miss-islington, pitrou, vstinner
Priority: normal Keywords: patch

Created on 2020-01-07 07:28 by corona10, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 17903 merged corona10, 2020-01-08 14:29
PR 17904 merged miss-islington, 2020-01-08 15:29
PR 17905 merged miss-islington, 2020-01-08 15:30
Messages (7)
msg359491 - (view) Author: Dong-hee Na (corona10) * (Python committer) Date: 2020-01-07 07:28
https://discuss.python.org/t/ot-gmane-server-moving/2967

AFAIK, we have several codes that use news.gmane.org.
According to article, don't we have to update it?
(sorry I am not a committer, so I don't have permission to write on that)

https://github.com/python/cpython/search?q=news.gmane.org&unscoped_q=news.gmane.org
msg359586 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2020-01-08 12:49
Correct: nntplib and test_nntplib should be updated:

Doc/library/nntplib.rst:23:   >>> s = nntplib.NNTP('news.gmane.org')
Doc/library/nntplib.rst:47:   >>> s = nntplib.NNTP('news.gmane.org')
Doc/library/nntplib.rst:76:    >>> with NNTP('news.gmane.org') as n:
Doc/library/nntplib.rst:228:      >>> s = NNTP('news.gmane.org')
Doc/whatsnew/3.3.rst:1565:  >>> with NNTP('news.gmane.org') as n:
Lib/nntplib.py:1110:    parser.add_argument('-s', '--server', default='news.gmane.org',
Lib/test/test_nntplib.py:642:                    "\tXref: news.gmane.org gmane.comp.python.authors:57"
Lib/test/test_nntplib.py:1128:            "xref": "news.gmane.org gmane.comp.python.authors:57"

Do you want to work on a pull request?
msg359592 - (view) Author: Dong-hee Na (corona10) * (Python committer) Date: 2020-01-08 13:21
@vstinner

Oh! sure, I will submit the PR right a way :)
msg359597 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2020-01-08 15:29
New changeset 2e6a8efa837410327b593dc83c57492253b1201e by Victor Stinner (Dong-hee Na) in branch 'master':
bpo-39242: Updated the Gmane domain into news.gmane.io (GH-17903)
https://github.com/python/cpython/commit/2e6a8efa837410327b593dc83c57492253b1201e
msg359598 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2020-01-08 15:31
Thanks Dong-hee Na for the update. The fix landed in master, backports to 3.7 and 3.8 will automatically follow once the CI test will pas.
msg359600 - (view) Author: miss-islington (miss-islington) Date: 2020-01-08 15:47
New changeset 00ac28ac4d06a311fc2386ef921b2603735ffae6 by Miss Islington (bot) in branch '3.7':
bpo-39242: Updated the Gmane domain into news.gmane.io (GH-17903)
https://github.com/python/cpython/commit/00ac28ac4d06a311fc2386ef921b2603735ffae6
msg359601 - (view) Author: miss-islington (miss-islington) Date: 2020-01-08 15:48
New changeset b24e4fac03409c4f845758d7ed884c5a99368493 by Miss Islington (bot) in branch '3.8':
bpo-39242: Updated the Gmane domain into news.gmane.io (GH-17903)
https://github.com/python/cpython/commit/b24e4fac03409c4f845758d7ed884c5a99368493
History
Date User Action Args
2022-04-11 14:59:25adminsetgithub: 83423
2020-01-08 15:48:37miss-islingtonsetmessages: + msg359601
2020-01-08 15:47:35miss-islingtonsetnosy: + miss-islington
messages: + msg359600
2020-01-08 15:31:39vstinnersetstatus: open -> closed
versions: + Python 3.7, Python 3.8, Python 3.9
messages: + msg359598

components: + Library (Lib), Tests
resolution: fixed
stage: patch review -> resolved
2020-01-08 15:30:07miss-islingtonsetpull_requests: + pull_request17317
2020-01-08 15:29:55miss-islingtonsetpull_requests: + pull_request17316
2020-01-08 15:29:49vstinnersetmessages: + msg359597
2020-01-08 14:29:27corona10setkeywords: + patch
stage: patch review
pull_requests: + pull_request17315
2020-01-08 13:21:45corona10setmessages: + msg359592
2020-01-08 12:49:00vstinnersetnosy: + vstinner
messages: + msg359586
2020-01-07 07:28:05corona10create