]> granicus.if.org Git - python/commitdiff
Fixed double hyphens that are rendered to literal en-dashes in the documenation.
authorSerhiy Storchaka <storchaka@gmail.com>
Sun, 4 Dec 2016 08:20:55 +0000 (10:20 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Sun, 4 Dec 2016 08:20:55 +0000 (10:20 +0200)
Doc/howto/logging-cookbook.rst
Doc/library/asyncio.rst
Doc/library/importlib.rst
Doc/library/logging.rst
Doc/library/msvcrt.rst
Doc/library/selectors.rst
Doc/library/winreg.rst
Doc/tutorial/stdlib2.rst

index de0d304b8688b19c1ff907f6b3ee0e86b1a583b4..f962cd8872bc82d2e6743df82abc00c6afe17902 100644 (file)
@@ -1088,7 +1088,7 @@ $-formatting to be used to build the actual "message" part which appears in the
 formatted log output in place of "%(message)s" or "{message}" or "$message".
 It's a little unwieldy to use the class names whenever you want to log
 something, but it's quite palatable if you use an alias such as __ (double
-underscore  not to be confused with _, the single underscore used as a
+underscore --- not to be confused with _, the single underscore used as a
 synonym/alias for :func:`gettext.gettext` or its brethren).
 
 The above classes are not included in Python, though they're easy enough to
@@ -1209,7 +1209,7 @@ do simply by adding new packages or modules and doing ::
 at module level). It's probably one too many things to think about. Developers
 could also add the filter to a :class:`~logging.NullHandler` attached to their
 top-level logger, but this would not be invoked if an application developer
-attached a handler to a lower-level library logger  so output from that
+attached a handler to a lower-level library logger --- so output from that
 handler would not reflect the intentions of the library developer.
 
 In Python 3.2 and later, :class:`~logging.LogRecord` creation is done through a
index f764c683b15659f3e75fbc4af7777047dfec3323..76bd9e984827146b748d6f49023a6ee8ff87b413 100644 (file)
@@ -1,5 +1,5 @@
-:mod:`asyncio` -- Asynchronous I/O, event loop, coroutines and tasks
-====================================================================
+:mod:`asyncio` --- Asynchronous I/O, event loop, coroutines and tasks
+=====================================================================
 
 .. module:: asyncio
    :synopsis: Asynchronous I/O, event loop, coroutines and tasks.
index cb52f740eeab4241f99347e6336955b3d49bb2d0..526c9f3f159f18e28d4c3dce4bfc5fd346817a1a 100644 (file)
@@ -1,5 +1,5 @@
-:mod:`importlib` -- The implementation of :keyword:`import`
-===========================================================
+:mod:`importlib` --- The implementation of :keyword:`import`
+============================================================
 
 .. module:: importlib
    :synopsis: The implementation of the import machinery.
index 68e459248cd22ad428ef1607964f7247b0c5393c..6098878c1a12442aa0492e894c00509de6e0148a 100644 (file)
@@ -561,7 +561,7 @@ The useful mapping keys in a :class:`LogRecord` are given in the section on
          handled by a strptime format string (``'%Y-%m-%d %H:%M:%S'``), and the
          part after the comma is a millisecond value. Because strptime does not
          have a format placeholder for milliseconds, the millisecond value is
-         appended using another format string, ``'%s,%03d'``  and both of these
+         appended using another format string, ``'%s,%03d'`` --- and both of these
          format strings have been hardcoded into this method. With the change,
          these strings are defined as class-level attributes which can be
          overridden at the instance level when desired. The names of the
index b334eeb314dd7c289ec282484cc765abc21d0bb7..bd34ffb1b2335d9bc9466adf893fc97a7c542951 100644 (file)
@@ -1,5 +1,5 @@
-:mod:`msvcrt` -- Useful routines from the MS VC++ runtime
-=========================================================
+:mod:`msvcrt` --- Useful routines from the MS VC++ runtime
+==========================================================
 
 .. module:: msvcrt
    :platform: Windows
index 44b27f31c1257325c805dafac6dee9e1d3784b46..1624d88aaed38d804c90bf32713218af011fe28f 100644 (file)
@@ -1,5 +1,5 @@
-:mod:`selectors` -- High-level I/O multiplexing
-===============================================
+:mod:`selectors` --- High-level I/O multiplexing
+================================================
 
 .. module:: selectors
    :synopsis: High-level I/O multiplexing.
index 52d591ad759b47ea09e933c8082a3d190cc7ab61..767ea314e838a41efb6d49454f212cfaaf62e060 100644 (file)
@@ -1,4 +1,4 @@
-:mod:`winreg` -- Windows registry access
+:mod:`winreg` --- Windows registry access
 =========================================
 
 .. module:: winreg
index 3714384eb66c8075459fd7ca01c09f0e8a28af8e..8853d4ac1a76ca16a22dd9118e46f6dfc8063e3f 100644 (file)
@@ -1,8 +1,8 @@
 .. _tut-brieftourtwo:
 
 *********************************************
-Brief Tour of the Standard Library -- Part II
-*********************************************
+Brief Tour of the Standard Library --- Part II
+**********************************************
 
 This second tour covers more advanced modules that support professional
 programming needs.  These modules rarely occur in small scripts.