diff options
| author | Bo Bayles <bbayles@gmail.com> | 2019-05-29 03:06:12 -0500 |
|---|---|---|
| committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2019-05-29 09:06:11 +0100 |
| commit | ca804955927dddb6ae5a846dbc0248a932be9a4e (patch) | |
| tree | d9cb8069d21b991842d1210e1641a95ebddde912 /Doc/whatsnew | |
| parent | f83d1dbd3bfbde940117c85f5c70de00e47b7e6e (diff) | |
| download | cpython-git-ca804955927dddb6ae5a846dbc0248a932be9a4e.tar.gz | |
bpo-22454: Add shlex.join() (the opposite of shlex.split()) (GH-7605)
Diffstat (limited to 'Doc/whatsnew')
| -rw-r--r-- | Doc/whatsnew/3.8.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index d1305dc1e7..f704b47098 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -552,6 +552,11 @@ convenience functions to automate the necessary tasks usually involved when creating a server socket, including accepting both IPv4 and IPv6 connections on the same socket. (Contributed by Giampaolo Rodola in :issue:`17561`.) +shlex +---------- + +The new :func:`shlex.join` function acts as the inverse of :func:`shlex.split`. +(Contributed by Bo Bayles in :issue:`32102`.) shutil ------ |
