; Asunto: Re: [Tutor] Regular Expresions instances
>
> On Tue, Apr 28, 2009 at 7:24 PM, Emile van Sebille wrote:
> > Emile van Sebille wrote:
>
> > Possibly a case of the documentation not keeping up with the release...
>
> It's pretty easy to file a bug report
On Tue, Apr 28, 2009 at 7:24 PM, Emile van Sebille wrote:
> Emile van Sebille wrote:
> Possibly a case of the documentation not keeping up with the release...
It's pretty easy to file a bug report against the docs. Minor fixes
like this are often incorporated fairly quickly. See
http://docs.pyth
Le Tue, 28 Apr 2009 22:51:09 + (GMT),
Emilio Casbas s'exprima ainsi:
>
> Hi,
>
> following the example from
> http://docs.python.org/3.0/howto/regex.html
>
> If I execute the following code on the python shell (3.1a1):
>
> >>> import re
> >>> p = re.compile('ab*')
> >>> p
>
> I get the m
Emile van Sebille wrote:
Emilio Casbas wrote:
Hi,
following the example from
http://docs.python.org/3.0/howto/regex.html
...from version 3.0 docs...
If I execute the following code on the python shell (3.1a1):
import re
p = re.compile('ab*')
p
I get the msg:
<_sre.SRE_Pattern object at
Emilio Casbas wrote:
Hi,
following the example from
http://docs.python.org/3.0/howto/regex.html
...from version 3.0 docs...
If I execute the following code on the python shell (3.1a1):
import re
p = re.compile('ab*')
p
I get the msg:
<_sre.SRE_Pattern object at 0x013A3440>
... is the
Hi,
following the example from
http://docs.python.org/3.0/howto/regex.html
If I execute the following code on the python shell (3.1a1):
>>> import re
>>> p = re.compile('ab*')
>>> p
I get the msg:
<_sre.SRE_Pattern object at 0x013A3440>
instead of the msg from the example:
Why I get an SRE_