python 套接字库文档中,`bufsize[ flags]` 是什么意思?

In python socket library document, what does `bufsize[, flags]` mean?

根据 Python 库 Socket documents 函数 recvfrom 具有参数 bufsize[, flags]。在使用recvfrom的实例中,参数通常只是一个表示bufsize的数字。 [, flags] 是什么意思?

在 Python 文档中,参数列表中的符号 [, something] 表示 something 是函数的可选参数。

来自套接字文档link:

See the Unix manual page recv(2) for the meaning of the optional argument flags; it defaults to zero.

--我强调可选。

因此,如果您省略 flags 参数,就好像您调用了 recvfrom(bufsize, 0)