diff options
author | Giampaolo Rodolà <g.rodola@gmail.com> | 2010-08-17 15:30:23 (GMT) |
---|---|---|
committer | Giampaolo Rodolà <g.rodola@gmail.com> | 2010-08-17 15:30:23 (GMT) |
commit | ccfb91c89f9d7515356f31fff4af4c5cbd5eef7a (patch) | |
tree | bec4fcc901fce3653e504c5f24ca0983f2e1e861 /Doc/whatsnew/3.2.rst | |
parent | 67b21b7547feee634bbecafeb88606ff350c0d3c (diff) | |
download | cpython-ccfb91c89f9d7515356f31fff4af4c5cbd5eef7a.zip cpython-ccfb91c89f9d7515356f31fff4af4c5cbd5eef7a.tar.gz cpython-ccfb91c89f9d7515356f31fff4af4c5cbd5eef7a.tar.bz2 |
fix issue #8866: parameters passed to socket.getaddrinfo can now be specified as single keyword arguments.
Diffstat (limited to 'Doc/whatsnew/3.2.rst')
-rw-r--r-- | Doc/whatsnew/3.2.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 2c625a8..d03a67f 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -181,6 +181,10 @@ New, Improved, and Deprecated Modules (Contributed by Georg Brandl; :issue:`5675`.) +* Parameters passed to :func:`socket.getaddrinfo()` function can now be + specified as single keyword arguments. + + (Contributed by Giampaolo Rodolà; :issue:`8866`.) Multi-threading =============== |