[Python-checkins] bpo-38731: Fix function signature of quiet in docs (GH-17719)

Pablo Galindo webhook-mailer at python.org
Fri Dec 27 21:53:07 EST 2019


https://github.com/python/cpython/commit/98f0f04b5016e63561d313a3446b7b58f2c12611
commit: 98f0f04b5016e63561d313a3446b7b58f2c12611
branch: master
author: Batuhan Taşkaya <47358913+isidentical at users.noreply.github.com>
committer: Pablo Galindo <Pablogsal at gmail.com>
date: 2019-12-28T02:53:03Z
summary:

bpo-38731: Fix function signature of quiet in docs (GH-17719)

files:
M Doc/library/py_compile.rst

diff --git a/Doc/library/py_compile.rst b/Doc/library/py_compile.rst
index 3824353abda1f..a12a5bb0b1aa2 100644
--- a/Doc/library/py_compile.rst
+++ b/Doc/library/py_compile.rst
@@ -27,7 +27,7 @@ byte-code cache files in the directory containing the source code.
    Exception raised when an error occurs while attempting to compile the file.
 
 
-.. function:: compile(file, cfile=None, dfile=None, doraise=False, optimize=-1, invalidation_mode=PycInvalidationMode.TIMESTAMP)
+.. function:: compile(file, cfile=None, dfile=None, doraise=False, optimize=-1, invalidation_mode=PycInvalidationMode.TIMESTAMP, quiet=0)
 
    Compile a source file to byte-code and write out the byte-code cache file.
    The source code is loaded from the file named *file*.  The byte-code is



More information about the Python-checkins mailing list