[Python-checkins] cpython (merge 3.5 -> default): Fixed markup in Misc/NEWS.

serhiy.storchaka python-checkins at python.org
Mon Nov 9 16:52:14 EST 2015


https://hg.python.org/cpython/rev/32ba463c238d
changeset:   99031:32ba463c238d
parent:      99028:128e61cb3de2
parent:      99030:90b45da566aa
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Mon Nov 09 23:44:31 2015 +0200
summary:
  Fixed markup in Misc/NEWS.

files:
  Misc/NEWS |  25 +++++++++++++------------
  1 files changed, 13 insertions(+), 12 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -46,7 +46,7 @@
 - Issue #24806: Prevent builtin types that are not allowed to be subclassed from
   being subclassed through multiple inheritance.
 
-* Issue #25301: The UTF-8 decoder is now up to 15 times as fast for error
+- Issue #25301: The UTF-8 decoder is now up to 15 times as fast for error
   handlers: ``ignore``, ``replace`` and ``surrogateescape``.
 
 - Issue #24848: Fixed a number of bugs in UTF-7 decoding of misformed data.
@@ -336,7 +336,7 @@
 - Issue #25260: Fix ``python -m test --coverage`` on Windows. Remove the
   list of ignored directories.
 
-- PCbuild\rt.bat now accepts an unlimited number of arguments to pass along
+- ``PCbuild\rt.bat`` now accepts an unlimited number of arguments to pass along
   to regrtest.py.  Previously there was a limit of 9.
 
 Build
@@ -541,7 +541,7 @@
 
 - Issue #23919: Prevents assert dialogs appearing in the test suite.
 
-- PCbuild\rt.bat now accepts an unlimited number of arguments to pass along
+- ``PCbuild\rt.bat`` now accepts an unlimited number of arguments to pass along
   to regrtest.py.  Previously there was a limit of 9.
 
 Build
@@ -2057,7 +2057,7 @@
   and does not require to carry long the spark.py parser-generator library;
   spark.py was removed from the source base.
 
-- Issue #12546: Allow \x00 to be used as a fill character when using str, int,
+- Issue #12546: Allow ``\x00`` to be used as a fill character when using str, int,
   float, and complex __format__ methods.
 
 - Issue #20480: Add ipaddress.reverse_pointer. Patch by Leon Weber.
@@ -2737,7 +2737,7 @@
   Patch by Tom Flanagan.
 
 - Issue #19884: readline: Disable the meta modifier key if stdout is not
-  a terminal to not write the ANSI sequence "\033[1034h" into stdout. This
+  a terminal to not write the ANSI sequence ``"\033[1034h"`` into stdout. This
   sequence is used on some terminal (ex: TERM=xterm-256color") to enable
   support of 8 bit characters.
 
@@ -2940,7 +2940,7 @@
 - Issue #21486: Optimize parsing of netmasks in ipaddress.IPv4Network and
   ipaddress.IPv6Network.
 
-- Issue #13916: Disallowed the surrogatepass error handler for non UTF-*
+- Issue #13916: Disallowed the surrogatepass error handler for non UTF-\*
   encodings.
 
 - Issue #20998: Fixed re.fullmatch() of repeated single character pattern
@@ -5113,7 +5113,7 @@
   upgrade pip by default, using the bundled pip provided by the new ensurepip
   module.  A new configure option, --with-ensurepip[=upgrade|install|no], is
   available to override the default ensurepip "--upgrade" option.  The option
-  can also be set with "make [alt]install ENSUREPIP=[upgrade|install\no]".
+  can also be set with "make [alt]install ENSUREPIP=[upgrade|install|no]".
 
 - Issue #19551: PEP 453 - the OS X installer now installs pip by default.
 
@@ -5282,7 +5282,7 @@
 - Issue #10712: 2to3 has a new "asserts" fixer that replaces deprecated names
   of unittest methods (e.g. failUnlessEqual -> assertEqual).
 
-- Issue #18037: 2to3 now escapes '\u' and '\U' in native strings.
+- Issue #18037: 2to3 now escapes ``'\u'`` and ``'\U'`` in native strings.
 
 - Issue #17839: base64.decodebytes and base64.encodebytes now accept any
   object that exports a 1 dimensional array of bytes (this means the same
@@ -5949,7 +5949,7 @@
 - Issue #5308: Raise ValueError when marshalling too large object (a sequence
   with size >= 2**31), instead of producing illegal marshal data.
 
-- Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError
+- Issue #12983: Bytes literals with invalid ``\x`` escape now raise a SyntaxError
   and a full traceback including line number.
 
 - Issue #16967: In function definition, evaluate positional defaults before
@@ -6320,7 +6320,7 @@
   loaded X.509 certs, X.509 CA certs and CRLs.
 
 - Issue #18167: cgi.FieldStorage no longer fails to handle multipart/form-data
-  when \r\n appears at end of 65535 bytes without other newlines.
+  when ``\r\n`` appears at end of 65535 bytes without other newlines.
 
 - Issue #18076: Introduce importlib.util.decode_source().
 
@@ -6933,8 +6933,9 @@
 
 - Issue #16900: Issue a ResourceWarning when an ssl socket is left unclosed.
 
-- Issue #13899: \A, \Z, and \B now correctly match the A, Z, and B literals
-  when used inside character classes (e.g. '[\A]').  Patch by Matthew Barnett.
+- Issue #13899: ``\A``, ``\Z``, and ``\B`` now correctly match the A, Z,
+  and B literals when used inside character classes (e.g. ``'[\A]'``).
+  Patch by Matthew Barnett.
 
 - Issue #15545: Fix regression in sqlite3's iterdump method where it was
   failing if the connection used a row factory (such as sqlite3.Row) that

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list