]> granicus.if.org Git - python/commitdiff
[3.6] bpo-34065: Improve the markup of logging.basicConfig() arguments (GH-8153)...
authorDong-hee Na <donghee.na92@gmail.com>
Sat, 7 Jul 2018 16:11:22 +0000 (01:11 +0900)
committerSerhiy Storchaka <storchaka@gmail.com>
Sat, 7 Jul 2018 16:11:22 +0000 (19:11 +0300)
(cherry picked from commit 2800dcf656229c2ca4c90b4ddbace0717c41bb9e)

Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
Doc/library/logging.rst
Misc/NEWS.d/next/Documentation/2018-07-07-20-38-41.bpo-34065.1snofM.rst [new file with mode: 0644]

index 21b9c7d2e735a73e1d205cc6d8af86c3eed3f82f..590d55689d8a7e7f0ca0485c52e5734fa86ef45d 100644 (file)
@@ -1170,14 +1170,13 @@ functions.
    +--------------+---------------------------------------------+
 
    .. versionchanged:: 3.2
-      The ``style`` argument was added.
+      The *style* argument was added.
 
    .. versionchanged:: 3.3
-      The ``handlers`` argument was added. Additional checks were added to
+      The *handlers* argument was added. Additional checks were added to
       catch situations where incompatible arguments are specified (e.g.
-      ``handlers`` together with ``stream`` or ``filename``, or ``stream``
-      together with ``filename``).
-
+      *handlers* together with *stream* or *filename*, or *stream*
+      together with *filename*).
 
 .. function:: shutdown()
 
diff --git a/Misc/NEWS.d/next/Documentation/2018-07-07-20-38-41.bpo-34065.1snofM.rst b/Misc/NEWS.d/next/Documentation/2018-07-07-20-38-41.bpo-34065.1snofM.rst
new file mode 100644 (file)
index 0000000..a3f9fb8
--- /dev/null
@@ -0,0 +1 @@
+Fix wrongly written basicConfig documentation markup syntax