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 ezio.melotti
Recipients eric.smith, ezio.melotti, lemburg, mark.dickinson, pitrou
Date 2009-07-25.18:01:48
SpamBayes Score 2.4670132e-07
Marked as misclassified No
Message-id <1248544911.79.0.95124691119.issue6561@psf.upfronthosting.co.za>
In-reply-to
Content
This seems to me quite redundant:
+      Matches any Unicode decimal digit; more specifically, matches
+      any character in Unicode category [Nd] (Number, Decimal Digit).
+      This includes ``[0-9]``, and also many other digit characters.
I suggest something like:
Matches the decimal digits ``[0-9]`` and all the characters that belong
to the Unicode category Nd (Number, Decimal Digit).

Two more minor details: instead of '\d', I'd use '^\d$' and instead of
self.assertEqual(re.match('\d', x), None)
self.assertIsNone(re.match('\d', x)).
History
Date User Action Args
2009-07-25 18:01:52ezio.melottisetrecipients: + ezio.melotti, lemburg, mark.dickinson, pitrou, eric.smith
2009-07-25 18:01:51ezio.melottisetmessageid: <1248544911.79.0.95124691119.issue6561@psf.upfronthosting.co.za>
2009-07-25 18:01:50ezio.melottilinkissue6561 messages
2009-07-25 18:01:48ezio.melotticreate