From 8c5326f103d1b71aac293815f0f731d756c1a90a Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Wed, 29 Apr 2009 22:44:07 +0000 Subject: [PATCH] #5878: fix repr of re object. --- Doc/howto/regex.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/howto/regex.rst b/Doc/howto/regex.rst index 81d5abaf58a..71ff56d3f41 100644 --- a/Doc/howto/regex.rst +++ b/Doc/howto/regex.rst @@ -264,7 +264,7 @@ performing string substitutions. :: >>> import re >>> p = re.compile('ab*') >>> print p - + <_sre.SRE_Pattern object at 80b4150> :func:`re.compile` also accepts an optional *flags* argument, used to enable various special features and syntax variations. We'll go over the available