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.

Author methane
Recipients docs@python, methane
Date 2014-02-03.06:19:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1391408382.37.0.746852071929.issue20497@psf.upfronthosting.co.za>
In-reply-to
Content
http://docs.python.org/3.3/library/socket.html#socket.getaddrinfo

> Changed in version 3.2: parameters can now be passed as single keyword arguments.

What *single* means?
I can use multiple keyword arguments:

In [3]: socket.getaddrinfo('www.python.org', 80, proto=socket.SOL_TCP, family=socket.AF_INET)
Out[3]:
[(<AddressFamily.AF_INET: 2>,
  <SocketType.SOCK_STREAM: 1>,
  6,
  '',
  ('82.94.164.162', 80))]
History
Date User Action Args
2014-02-03 06:19:42methanesetrecipients: + methane, docs@python
2014-02-03 06:19:42methanesetmessageid: <1391408382.37.0.746852071929.issue20497@psf.upfronthosting.co.za>
2014-02-03 06:19:42methanelinkissue20497 messages
2014-02-03 06:19:41methanecreate