summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2010-03-30 08:24:06 (GMT)
committerFlorent Xicluna <florent.xicluna@gmail.com>2010-03-30 08:24:06 (GMT)
commit22b243809eea5f4f504f9a7ac157539adde6b3f7 (patch)
treec910ac626faa4b6ec4565e1762b41089364aee5d /Misc
parente6410c536c9dca5a3a7899888c071f41a1767291 (diff)
downloadcpython-22b243809eea5f4f504f9a7ac157539adde6b3f7.zip
cpython-22b243809eea5f4f504f9a7ac157539adde6b3f7.tar.gz
cpython-22b243809eea5f4f504f9a7ac157539adde6b3f7.tar.bz2
#7643: Unicode codepoints VT (0x0B) and FF (0x0C) are linebreaks according to Unicode Standard Annex #14.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7855dd5..0105bc3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,10 @@ Core and Builtins
Library
-------
+- Issue #7643: Unicode codepoints VT (0x0B) and FF (0x0C) are linebreaks
+ according to Unicode Standard Annex #14.
+ http://www.unicode.org/reports/tr14/
+
- Comparisons using one of <, <=, >, >= between a complex instance and
a Fractions instance now raise TypeError instead of returning
True/False. This makes Fraction <=> complex comparisons consistent with