summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2005-09-01 12:04:29 (GMT)
committerWalter Dörwald <walter@livinglogic.de>2005-09-01 12:04:29 (GMT)
commit78a78b0768478f19acf979e7d55e1e01345e6fa5 (patch)
tree52a252b785b24692153ac3983e072c01e017d01a /Misc
parentc5238b82887c9f0507632aec206739c3bb7a1caf (diff)
downloadcpython-78a78b0768478f19acf979e7d55e1e01345e6fa5.zip
cpython-78a78b0768478f19acf979e7d55e1e01345e6fa5.tar.gz
cpython-78a78b0768478f19acf979e7d55e1e01345e6fa5.tar.bz2
Fix rest markup and typos.
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 3ac8db4..29f2b44 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -64,7 +64,7 @@ Core and builtins
proper magic slot for type conversions when subclassed. Previously the
magic slot was ignored during conversion. Semantics now match the way
subclasses of str always behaved. int/long/float, conversion of an instance
- to the base class has been moved the prroper nb_* magic slot and out of
+ to the base class has been moved to the proper nb_* magic slot and out of
PyNumber_*().
Thanks Walter Dörwald.
@@ -439,7 +439,7 @@ Library
about illegal code points. The codec now supports PEP 293 style error
handlers.
-- Bug #1235646: ^^codecs.StreamRecoder.next()^^ now reencodes the data it reads
+- Bug #1235646: ``codecs.StreamRecoder.next()`` now reencodes the data it reads
from the input stream, so that the output is a byte string in the correct
encoding instead of a unicode string.