]> 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 2910d36e78fb4c92431082cb081c774e9cc308e3..182b0541082251867f90ddfbf6f32a8086fefb28 100644 (file)
@@ -33,13 +33,6 @@ module-level functions and :class:`RegexObject` methods.  The functions are
 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 @@ there are three octal digits, it is considered an octal escape. Otherwise, it is
 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: