Message83271
| Author | mrabarnett |
|---|---|
| Recipients | akuchling, amaury.forgeotdarc, collinwinter, ezio.melotti, georg.brandl, jimjjewett, mark, moreati, mrabarnett, nneonneo, pitrou, rsc, timehorse |
| Date | 2009-03-07.02:47:42 |
| SpamBayes Score | 0.005418163 |
| Marked as misclassified | No |
| Message-id | <1236394097.44.0.675943933497.issue2636@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
issue2636-features-6.diff includes: Bugfixes Added group access via subscripting. >>> m = re.search("(\D*)(?<number>\d+)(\D*)", "abc123def") >>> len(m) 4 >>> m[0] 'abc123def' >>> m[1] 'abc' >>> m[2] '123' >>> m[3] 'def' >>> m[1 : 4] ('abc', '123', 'def') >>> m[ : ] ('abc123def', 'abc', '123', 'def') >>> m["number"] '123' |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2009-03-07 02:48:18 | mrabarnett | set | recipients: + mrabarnett, akuchling, georg.brandl, collinwinter, jimjjewett, amaury.forgeotdarc, pitrou, nneonneo, rsc, timehorse, mark, ezio.melotti, moreati |
| 2009-03-07 02:48:17 | mrabarnett | set | messageid: <1236394097.44.0.675943933497.issue2636@psf.upfronthosting.co.za> |
| 2009-03-07 02:48:16 | mrabarnett | link | issue2636 messages |
| 2009-03-07 02:48:15 | mrabarnett | create | |