Commit acdb0207 authored by Serhiy Storchaka's avatar Serhiy Storchaka

Fixed markup in Misc/NEWS.

parents 04b5700b faf7060f
......@@ -364,7 +364,7 @@ Tests
- 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
......@@ -1885,7 +1885,7 @@ Core and Builtins
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.
......@@ -2565,7 +2565,7 @@ Library
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.
......@@ -2768,7 +2768,7 @@ Library
- 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
......@@ -4941,7 +4941,7 @@ Build
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.
......@@ -5110,7 +5110,7 @@ Library
- 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
......@@ -5777,7 +5777,7 @@ Core and Builtins
- 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
......@@ -6148,7 +6148,7 @@ Library
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().
......@@ -6761,8 +6761,9 @@ Library
- 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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment