summaryrefslogtreecommitdiffstats
path: root/Doc/library/logging.handlers.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-01-18 03:40:00 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-01-18 03:40:00 (GMT)
commit226231c93047a4483adc0001b10fb714341113d4 (patch)
tree8e334fbce0490d43f3464b871a019c9ff527b4b7 /Doc/library/logging.handlers.rst
parent2c5b688081e8e88cecbb487e4049bc7047f1ff86 (diff)
downloadcpython-226231c93047a4483adc0001b10fb714341113d4.zip
cpython-226231c93047a4483adc0001b10fb714341113d4.tar.gz
cpython-226231c93047a4483adc0001b10fb714341113d4.tar.bz2
Use ASCII quotes and fix markup.
Diffstat (limited to 'Doc/library/logging.handlers.rst')
-rw-r--r--Doc/library/logging.handlers.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/logging.handlers.rst b/Doc/library/logging.handlers.rst
index 183d5f9..51e476b 100644
--- a/Doc/library/logging.handlers.rst
+++ b/Doc/library/logging.handlers.rst
@@ -209,7 +209,7 @@ need to override.
The default implementation calls the 'namer' attribute of the handler,
if it's callable, passing the default name to it. If the attribute isn't
- callable (the default is `None`), the name is returned unchanged.
+ callable (the default is ``None``), the name is returned unchanged.
:param default_name: The default name for the log file.
@@ -222,7 +222,7 @@ need to override.
The default implementation calls the 'rotator' attribute of the handler,
if it's callable, passing the source and dest arguments to it. If the
- attribute isn't callable (the default is `None`), the source is simply
+ attribute isn't callable (the default is ``None``), the source is simply
renamed to the destination.
:param source: The source filename. This is normally the base
@@ -780,7 +780,7 @@ should, then :meth:`flush` is expected to do the needful.
.. method:: close()
- Calls :meth:`flush`, sets the target to :const:`None` and clears the
+ Calls :meth:`flush`, sets the target to ``None`` and clears the
buffer.