From: Christian Heimes Date: Mon, 5 Sep 2016 22:07:02 +0000 (+0200) Subject: Issue #27744: correct comment and markup X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8c21ab0ab92d7f10a7ada9d5f157ee69c9095e63;p=python Issue #27744: correct comment and markup --- diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst index ec793ba16a..4a2cf11f8e 100644 --- a/Doc/library/socket.rst +++ b/Doc/library/socket.rst @@ -136,7 +136,7 @@ created. Socket addresses are represented as follows: elements ``(type, name [, feat [, mask]])``, where: - *type* is the algorithm type as string, e.g. ``aead``, ``hash``, - ``skcipher`` or ``rng``. + ``skcipher`` or ``rng``. - *name* is the algorithm name and operation mode as string, e.g. ``sha256``, ``hmac(sha256)``, ``cbc(aes)`` or ``drbg_nopr_ctr_aes256``. diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 42ae2fbc54..0b45c334f4 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -2556,7 +2556,7 @@ sock_setsockopt(PySocketSockObject *s, PyObject *args) } PyErr_Clear(); - /* setsockopt(level, opt, (None, flag)) */ + /* setsockopt(level, opt, None, flag) */ if (PyArg_ParseTuple(args, "iiO!I:setsockopt", &level, &optname, Py_TYPE(Py_None), &none, &optlen)) { assert(sizeof(socklen_t) >= sizeof(unsigned int));