This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vizcayno
Recipients vizcayno
Date 2008-07-01.00:10:48
SpamBayes Score 0.27007678
Marked as misclassified No
Message-id <1214871051.34.0.403559137594.issue3247@psf.upfronthosting.co.za>
In-reply-to
Content
For Windows XP SP3:

v = 'add 1 to 4.56'
import re
r=re.search("([0-9]+)\D+(\d+\.\d+)","add 1 to 4.56")
r
<_sre.SRE_Match object at 0x00BED920>
r.groups()
('1', '4.56')
dir(r)
[]

in pyhton 2.5 it shows:
['__copy__', '__deepcopy__', 'end', 'expand', 'group', 'groupdict', 'gro
ups', 'span', 'start']
History
Date User Action Args
2008-07-01 00:10:51vizcaynosetspambayes_score: 0.270077 -> 0.27007678
recipients: + vizcayno
2008-07-01 00:10:51vizcaynosetspambayes_score: 0.270077 -> 0.270077
messageid: <1214871051.34.0.403559137594.issue3247@psf.upfronthosting.co.za>
2008-07-01 00:10:49vizcaynolinkissue3247 messages
2008-07-01 00:10:48vizcaynocreate