some RFC references could be updated
Hi, Just starting to learn python and have noted that at the bottom of this page: http://docs.python.org/3/library/ssl.html There's a couple of out of date references: 0) RFC 1750 has been been obsoleted by RFC 4086 so maybe this is a better reference (and I prefer the datatracker view as opposed to the tools view): http://datatracker.ietf.org/doc/rfc4086/ Same could be done on this link: http://docs.python.org/3.4/library/ssl.html 1) RFC 3280 has been obsoleted by RFC 5280 so maybe: http://datatracker.ietf.org/doc/rfc5280/ Same could be done on this link: http://docs.python.org/3.4/library/ssl.html 2) RFC 4366 has been obsoleted by RFC 6066 so maybe: http://datatracker.ietf.org/doc/rfc6066/ On http://docs.python.org/3.4/library/ssl.html you could probably just drop the reference and change in the ssl.HAS_SNI section. 3) The link to TLS seems broken maybe just point to: TLS 1.0 http://datatracker.ietf.org/doc/rfc2246/ TLS 1.1 http://datatracker.ietf.org/doc/rfc4346/ TLS 1.2 http://datatracker.ietf.org/doc/rfc5246/ SSL 3.0 http://datatracker.ietf.org/doc/rfc6101/ Actually the same link is broken on: http://docs.python.org/3.4/library/ssl.html 4) (this is a shameless plug) Might be worth adding a reference in the ssl.PROTOCOL_SSLv2 section that points to: http://datatracker.ietf.org/doc/rfc6146/ Cheers, spt
New submission from Georg Brandl: -------- Original-Nachricht -------- Betreff: [docs] some RFC references could be updated Datum: Mon, 20 May 2013 22:37:53 -0400 Von: Sean Turner <turners@ieca.com> An: docs@python.org Hi, Just starting to learn python and have noted that at the bottom of this page: http://docs.python.org/3/library/ssl.html There's a couple of out of date references: 0) RFC 1750 has been been obsoleted by RFC 4086 so maybe this is a better reference (and I prefer the datatracker view as opposed to the tools view): http://datatracker.ietf.org/doc/rfc4086/ Same could be done on this link: http://docs.python.org/3.4/library/ssl.html 1) RFC 3280 has been obsoleted by RFC 5280 so maybe: http://datatracker.ietf.org/doc/rfc5280/ Same could be done on this link: http://docs.python.org/3.4/library/ssl.html 2) RFC 4366 has been obsoleted by RFC 6066 so maybe: http://datatracker.ietf.org/doc/rfc6066/ On http://docs.python.org/3.4/library/ssl.html you could probably just drop the reference and change in the ssl.HAS_SNI section. 3) The link to TLS seems broken maybe just point to: TLS 1.0 http://datatracker.ietf.org/doc/rfc2246/ TLS 1.1 http://datatracker.ietf.org/doc/rfc4346/ TLS 1.2 http://datatracker.ietf.org/doc/rfc5246/ SSL 3.0 http://datatracker.ietf.org/doc/rfc6101/ Actually the same link is broken on: http://docs.python.org/3.4/library/ssl.html 4) (this is a shameless plug) Might be worth adding a reference in the ssl.PROTOCOL_SSLv2 section that points to: http://datatracker.ietf.org/doc/rfc6146/ ---------- assignee: docs@python components: Documentation messages: 199069 nosy: docs@python, georg.brandl priority: normal severity: normal status: open title: some RFC references could be updated _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue19180> _______________________________________
Changes by Tshepang Lekhonkhobe <tshepang@gmail.com>: ---------- nosy: +tshepang _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue19180> _______________________________________
Serhiy Storchaka added the comment: See also http://comments.gmane.org/gmane.comp.python.devel/139953 . ---------- nosy: +serhiy.storchaka _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue19180> _______________________________________
Changes by Christian Heimes <lists@cheimes.de>: ---------- stage: -> needs patch type: -> enhancement versions: +Python 3.6, Python 3.7 _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue19180> _______________________________________
Changes by Roundup Robot <devnull@psf.upfronthosting.co.za>: ---------- pull_requests: +109 _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue19180> _______________________________________
Chandan kumar added the comment: I have updated the RFC references from [0] to [2]. I am not able to find out the TLS links mentioned in the https://docs.python.org/3.4/library/ssl.html. I have attached the pull request. ---------- nosy: +chkumar246 _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue19180> _______________________________________
Changes by Serhiy Storchaka <storchaka+cpython@gmail.com>: ---------- nosy: +christian.heimes stage: needs patch -> patch review _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue19180> _______________________________________
Changes by Nick Coghlan <ncoghlan@gmail.com>: ---------- nosy: +ncoghlan _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue19180> _______________________________________
Stéphane Wirtel added the comment: The associated PR has been reviewed and could be merged. ---------- nosy: +matrixise _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue19180> _______________________________________
Nick Coghlan added the comment: New changeset 63c2c8ac17750ba2be2cfc4e339cae1f4edee54f by Nick Coghlan (Chandan Kumar) in branch 'master': bpo-19180: Updated references for RFC 1750, RFC 3280 & RFC 4366 (GH-148) https://github.com/python/cpython/commit/63c2c8ac17750ba2be2cfc4e339cae1f4ed... ---------- _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue19180> _______________________________________
Changes by Mariatta Wijaya <mariatta.wijaya@gmail.com>: ---------- stage: patch review -> backport needed _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue19180> _______________________________________
Changes by Nick Coghlan <ncoghlan@gmail.com>: ---------- pull_requests: +2089 _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue19180> _______________________________________
Nick Coghlan added the comment: New changeset c422959daca0598fabbefa5de4417ebce3b1da06 by Nick Coghlan in branch '3.6': [3.6] bpo-19180: Updated references for RFC 1750, RFC 3280 & RFC 4366 https://github.com/python/cpython/commit/c422959daca0598fabbefa5de4417ebce3b... ---------- _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue19180> _______________________________________
Nick Coghlan added the comment: And merged. Thanks Chandan for the update, and everyone else for the comments and triage :) ---------- resolution: -> fixed stage: backport needed -> resolved status: open -> closed _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue19180> _______________________________________
Serhiy Storchaka added the comment: Needed to regenerate Argument Clinic code. ---------- status: closed -> open _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue19180> _______________________________________
Changes by Serhiy Storchaka <storchaka+cpython@gmail.com>: ---------- pull_requests: +2137 _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue19180> _______________________________________
Serhiy Storchaka added the comment: New changeset 5f31d5cf6efa8c304d352e34f9f2a1ed0074298e by Serhiy Storchaka in branch 'master': Regenerate Argument Clinic code for bpo-19180. (#2073) https://github.com/python/cpython/commit/5f31d5cf6efa8c304d352e34f9f2a1ed007... ---------- _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue19180> _______________________________________
Changes by Serhiy Storchaka <storchaka+cpython@gmail.com>: ---------- pull_requests: +2141 _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue19180> _______________________________________
Serhiy Storchaka added the comment: New changeset 911068e250ee2b0847ca78d9ff527e0d6bf94551 by Serhiy Storchaka in branch '3.6': [3.6] Regenerate Argument Clinic code for bpo-19180. (GH-2073). (#2077) https://github.com/python/cpython/commit/911068e250ee2b0847ca78d9ff527e0d6bf... ---------- _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue19180> _______________________________________
Changes by Serhiy Storchaka <storchaka+cpython@gmail.com>: ---------- status: open -> closed _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue19180> _______________________________________
participants (10)
-
Chandan kumar
-
Christian Heimes
-
Georg Brandl
-
Mariatta Wijaya
-
Nick Coghlan
-
Roundup Robot
-
Sean Turner
-
Serhiy Storchaka
-
Stéphane Wirtel
-
Tshepang Lekhonkhobe