diff options
author | Joannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com> | 2019-05-28 16:29:04 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2019-05-28 16:29:04 (GMT) |
commit | 2e33ecd7c9b0cac3efc6fcbdd4547fd086b4e2d1 (patch) | |
tree | b87106cad890030018bdefd2ca42092b58ed1330 /Doc/whatsnew | |
parent | 3c8724fc60163f4f3c3b0d531c84cc7b36783f82 (diff) | |
download | cpython-2e33ecd7c9b0cac3efc6fcbdd4547fd086b4e2d1.zip cpython-2e33ecd7c9b0cac3efc6fcbdd4547fd086b4e2d1.tar.gz cpython-2e33ecd7c9b0cac3efc6fcbdd4547fd086b4e2d1.tar.bz2 |
bpo-22640: Add silent mode to py_compile.compile() (GH-12976)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index b32cec1..aaa6ffe 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -537,6 +537,13 @@ NSKeyedArchiver-encoded binary plists. (Contributed by Jon Janzen in :issue:`26707`.) +py_compile +---------- + +:func:`py_compile.compile` now supports silent mode. +(Contributed by Joannah Nanjekye in :issue:`22640`.) + + socket ------ |