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 ash
Recipients Phillip.M.Feldman@gmail.com, ash
Date 2009-08-07.12:23:31
SpamBayes Score 0.00024296933
Marked as misclassified No
Message-id <1249647816.27.0.870888494795.issue6663@psf.upfronthosting.co.za>
In-reply-to
Content
You've made three groups with parentheses. Just drop them:

>>> re.findall('-?\d+[.]\d+|-?\d+[.]?|-?[.]\d+', 'asdf6.7jjjj7.33ff9')
['6.7', '7.33', '9']

Everything is according to documentation: "If one or more groups are
present in the pattern, return a list of groups; this will be a list of
tuples if the pattern has more than one group."

http://docs.python.org/library/re.html#re.findall

I would suggest to close this bug.
History
Date User Action Args
2009-08-07 12:23:36ashsetrecipients: + ash, Phillip.M.Feldman@gmail.com
2009-08-07 12:23:36ashsetmessageid: <1249647816.27.0.870888494795.issue6663@psf.upfronthosting.co.za>
2009-08-07 12:23:34ashlinkissue6663 messages
2009-08-07 12:23:32ashcreate