[Python-checkins] cpython: #19778: fix a couple of re reprs in the documentation.

ezio.melotti python-checkins at python.org
Mon Nov 25 21:47:19 CET 2013


http://hg.python.org/cpython/rev/5237e7da8a76
changeset:   87561:5237e7da8a76
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Mon Nov 25 22:47:01 2013 +0200
summary:
  #19778: fix a couple of re reprs in the documentation.

files:
  Doc/howto/regex.rst |  8 ++++----
  1 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Doc/howto/regex.rst b/Doc/howto/regex.rst
--- a/Doc/howto/regex.rst
+++ b/Doc/howto/regex.rst
@@ -271,8 +271,8 @@
 
    >>> import re
    >>> p = re.compile('ab*')
-   >>> p  #doctest: +ELLIPSIS
-   <_sre.SRE_Pattern object at 0x...>
+   >>> p
+   re.compile('ab*')
 
 :func:`re.compile` also accepts an optional *flags* argument, used to enable
 various special features and syntax variations.  We'll go over the available
@@ -383,8 +383,8 @@
 
    >>> import re
    >>> p = re.compile('[a-z]+')
-   >>> p  #doctest: +ELLIPSIS
-   <_sre.SRE_Pattern object at 0x...>
+   >>> p
+   re.compile('[a-z]+')
 
 Now, you can try matching various strings against the RE ``[a-z]+``.  An empty
 string shouldn't match at all, since ``+`` means 'one or more repetitions'.

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


More information about the Python-checkins mailing list