I was confused when I first used Boost regualr expressions,
but I got used to it now. Aside from it, I think Boost regular expression
makes you write too much code just to do a simple pattern matching.
Tomohiro Kusumi
2008/10/23 <[EMAIL PROTECTED]>
> A colleague wrote a C++ library her
ython 3.0rc1 (r30rc1:66499, Oct 8 2008, 23:23:02)
[GCC 4.1.2 20070626 (Red Hat 4.1.2-14)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
Tomohiro Kusumi
2008/10/14 <[EMAIL PROTECTED]>
> I have a SUSE 10.3 O
How about pyscripter or pydev (eclipse plugin), although I don't know if
they
are the most popular one. I use them on Windows.
Tomohiro Kusumi
2008/10/16 Steve Phillips <[EMAIL PROTECTED]>
> Hi All,
> I am just wondering what seems to be the most popular IDE. The reaso
Diez,
Thanks, you're right.
Delegated attributes are not in the dir() result.
>>> getattr(reg, "pattern")
'[0-9]+'
>>> getattr(reg, "flags")
0
>>> getattr(reg, "groupindex")
{}
Tomohiro Kusumi
> Tomohiro Kusumi schri
index' although they exist as members of _sre.SRE_Pattern
instance ?
It sort of irritates me, because whenever I write Python code
using a module which I'm not used to using, I often try Python
shell with TAB complete to find out the member of module/instance.
Tomohiro Kusumi
---