summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-28 20:41:58 (GMT)
committerGeorg Brandl <georg@python.org>2014-10-28 20:41:58 (GMT)
commit0235709b8c122f7e84ad7e6a80a4c1e74513d8e5 (patch)
treeb899ee3e81dcc199b56aaf79cf907fcd7b448705
parenta3e80deac1474f86bb01b024c276e8a6e6d78901 (diff)
parentbb2d6692923b492928bf5e6bf7ec64747019afd3 (diff)
downloadcpython-0235709b8c122f7e84ad7e6a80a4c1e74513d8e5.zip
cpython-0235709b8c122f7e84ad7e6a80a4c1e74513d8e5.tar.gz
cpython-0235709b8c122f7e84ad7e6a80a4c1e74513d8e5.tar.bz2
merge with 3.4
-rw-r--r--Doc/library/re.rst15
1 files changed, 8 insertions, 7 deletions
diff --git a/Doc/library/re.rst b/Doc/library/re.rst
index 48e3006..9268eb2 100644
--- a/Doc/library/re.rst
+++ b/Doc/library/re.rst
@@ -38,13 +38,6 @@ module-level functions and methods on
that don't require you to compile a regex object first, but miss some
fine-tuning parameters.
-.. seealso::
-
- Mastering Regular Expressions
- Book on regular expressions by Jeffrey Friedl, published by O'Reilly. The
- second edition of the book no longer covers Python at all, but the first
- edition covered writing good regular expression patterns in great detail.
-
.. _re-syntax:
@@ -443,6 +436,14 @@ three digits in length.
The ``'\u'`` and ``'\U'`` escape sequences have been added.
+.. seealso::
+
+ Mastering Regular Expressions
+ Book on regular expressions by Jeffrey Friedl, published by O'Reilly. The
+ second edition of the book no longer covers Python at all, but the first
+ edition covered writing good regular expression patterns in great detail.
+
+
.. _contents-of-module-re: