summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-06-24 20:41:33 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-06-24 20:41:33 (GMT)
commitad09b5ddb943465e4722fb6c01e8757252562a89 (patch)
tree480ef73c6538e44818fa0ff0de658d4f98692523
parent5d7e1d378ca76d3c33c649bf0651b6369da86887 (diff)
downloadcpython-ad09b5ddb943465e4722fb6c01e8757252562a89.zip
cpython-ad09b5ddb943465e4722fb6c01e8757252562a89.tar.gz
cpython-ad09b5ddb943465e4722fb6c01e8757252562a89.tar.bz2
Add a couple of what's new entries.
-rw-r--r--Doc/whatsnew/3.3.rst13
1 files changed, 13 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index a5dc0f8..a23b823 100644
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -1249,6 +1249,14 @@ The Tk GUI and the :func:`~pydoc.serve` function have been removed from the
in Python 3.2.
+re
+--
+
+:class:`str` regular expressions now support ``\u`` and ``\U`` escapes.
+
+(Contributed by Serhiy Storchaka in :issue:`3665`.)
+
+
sched
-----
@@ -1402,6 +1410,11 @@ ssl
(Contributed by Colin Marc in :issue:`14204`)
+* SSL errors can now be introspected more easily thanks to
+ :attr:`~ssl.SSLError.library` and :attr:`~ssl.SSLError.reason` attributes.
+
+ (Contributed by Antoine Pitrou in :issue:`14837`)
+
stat
----