[Python-checkins] cpython (2.7): Closes #22736: move seealso to the bottom of the section about RE syntax.

georg.brandl python-checkins at python.org
Tue Oct 28 22:19:29 CET 2014


https://hg.python.org/cpython/rev/465892bb0c12
changeset:   93194:465892bb0c12
branch:      2.7
parent:      93179:af8f678a4a75
user:        Georg Brandl <georg at python.org>
date:        Tue Oct 28 21:41:51 2014 +0100
summary:
  Closes #22736: move seealso to the bottom of the section about RE syntax.

files:
  Doc/library/re.rst |  15 ++++++++-------
  1 files changed, 8 insertions(+), 7 deletions(-)


diff --git a/Doc/library/re.rst b/Doc/library/re.rst
--- a/Doc/library/re.rst
+++ b/Doc/library/re.rst
@@ -33,13 +33,6 @@
 shortcuts 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:
 
@@ -418,6 +411,14 @@
 a group reference.  As for string literals, octal escapes are always at most
 three digits in length.
 
+.. 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:
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list