Message99411
| Author | tlynn |
|---|---|
| Recipients | tlynn |
| Date | 2010-02-16.14:04:33 |
| SpamBayes Score | 2.6854298e-06 |
| Marked as misclassified | No |
| Message-id | <1266329075.25.0.639780854585.issue7940@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
Python 2.5.2 (r252:60911, Jan 20 2010, 23:14:04)
[GCC 4.2.4 (Ubuntu 4.2.4-1ubuntu3)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import re
>>> list(re.compile('x').finditer('xxxx', 1, 3))
[<_sre.SRE_Match object at 0x7f2e820f09f0>, <_sre.SRE_Match object at 0x7f2e820f0d98>]
>>> list(re.compile('x').finditer('xxxx', 1, -1))
[]
>>> re.compile('x').findall('xxxx', 1, -1)
[]
>>> re.compile('x').findall('xxxx', 1, 3)
['x', 'x'] |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2010-02-16 14:04:35 | tlynn | set | recipients: + tlynn |
| 2010-02-16 14:04:35 | tlynn | set | messageid: <1266329075.25.0.639780854585.issue7940@psf.upfronthosting.co.za> |
| 2010-02-16 14:04:33 | tlynn | link | issue7940 messages |
| 2010-02-16 14:04:33 | tlynn | create | |