summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-11-20 10:24:34 (GMT)
committerGeorg Brandl <georg@python.org>2010-11-20 10:24:34 (GMT)
commit54445adfd3eb58a81f5f08e697ca44fc62176a58 (patch)
treec8da9a44e9fad10bc1a975f594cb13a6fa8e4230 /Misc
parent75b2a5ee117acb76149bcc400e1f58c45830dc33 (diff)
downloadcpython-54445adfd3eb58a81f5f08e697ca44fc62176a58.zip
cpython-54445adfd3eb58a81f5f08e697ca44fc62176a58.tar.gz
cpython-54445adfd3eb58a81f5f08e697ca44fc62176a58.tar.bz2
Fix rst markup errors.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 138f0f5..d5a002b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -61,7 +61,7 @@ Core and Builtins
undocumented value PyBUF_SHADOW, and strangely-looking code in
PyMemoryView_GetContiguous.
-- Issue #6081: Add str.format_map, similar to str.format(**mapping).
+- Issue #6081: Add str.format_map(), similar to ``str.format(**mapping)``.
- If FileIO.__init__ fails, close the file descriptor.
@@ -126,7 +126,7 @@ Library
there are non-base64 alphabet characters in the input.
- Issue #10386: Add __all__ to token module; this simplifies importing in
- tokenize module and prevents leaking of private names through import *.
+ tokenize module and prevents leaking of private names through ``import *``.
- Issue #4471: Properly shutdown socket in IMAP.shutdown(). Patch by Lorenzo
M. Catucci.