diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-09-29 13:49:32 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-09-29 13:49:32 (GMT) |
commit | fa72df799b60f93dbbc9bd62da3e1cac656a545b (patch) | |
tree | 9c9d8a9073ae0c6fb0d6916a1ce7668deab31082 | |
parent | ede184996c925ef6f642aea7e673f19deb4d50d1 (diff) | |
parent | aae25833dcd289a53a5c41680a2de451b7d8cbd3 (diff) | |
download | cpython-fa72df799b60f93dbbc9bd62da3e1cac656a545b.zip cpython-fa72df799b60f93dbbc9bd62da3e1cac656a545b.tar.gz cpython-fa72df799b60f93dbbc9bd62da3e1cac656a545b.tar.bz2 |
Merge: Document the addition of 'quote' to shlex in What's New.
-rw-r--r-- | Doc/whatsnew/3.3.rst | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index a674dd6..2686ddc 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -1534,6 +1534,15 @@ sched :issue:`13245`) +shlex +----- + +* The previously undocumented helper function ``quote`` from the + :mod:`pipes` modules has been moved to the :mod:`shlex` module and + documented. :func:`~shlex.quote` properly escapes all characters in a string + that might be otherwise given special meaning by the shell. + + shutil ------ @@ -1565,7 +1574,6 @@ shutil in :issue:`4489`.) - signal ------ |