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: Example in socket documentation uses deprecated array.fromstring
Type: Stage: resolved
Components: Distutils, Documentation Versions: Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: corona10, dcoles, docs@python, dstufft, eric.araujo, xtreak
Priority: normal Keywords: patch

Created on 2019-11-22 18:59 by dcoles, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 17332 merged dcoles, 2019-11-22 18:59
PR 17386 merged miss-islington, 2019-11-26 06:34
PR 17387 merged miss-islington, 2019-11-26 08:33
Messages (2)
msg357314 - (view) Author: David Coles (dcoles) * Date: 2019-11-22 18:59
See the `recv_fds` example for `socket.recvmsg`.

This code produces a `DeprecationWarning` on current versions of Python.

https://docs.python.org/3.9/library/socket.html#socket.socket.recvmsg
msg357489 - (view) Author: Karthikeyan Singaravelan (xtreak) * (Python committer) Date: 2019-11-26 08:41
Thanks David for the report and patch.
History
Date User Action Args
2022-04-11 14:59:23adminsetgithub: 83078
2019-11-26 08:41:21xtreaksetstatus: open -> closed

nosy: + xtreak
messages: + msg357489

resolution: fixed
stage: patch review -> resolved
2019-11-26 08:33:37miss-islingtonsetpull_requests: + pull_request16869
2019-11-26 06:34:46miss-islingtonsetkeywords: + patch
stage: patch review
pull_requests: + pull_request16868
2019-11-22 18:59:15dcolescreate