]> granicus.if.org Git - python/commitdiff
Closes #22736: move seealso to the bottom of the section about RE syntax.
authorGeorg Brandl <georg@python.org>
Tue, 28 Oct 2014 20:41:51 +0000 (21:41 +0100)
committerGeorg Brandl <georg@python.org>
Tue, 28 Oct 2014 20:41:51 +0000 (21:41 +0100)
Doc/library/re.rst

index edb24864f293d773f1c4942783cb7503d38ff7dd..dfc25ea08915bfdb88dbc1b5efc4f4ae87b917b0 100644 (file)
@@ -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: