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 pitrou
Recipients cjw296, fwierzbicki, ncoghlan, pitrou, r.david.murray
Date 2009-11-15.22:20:21
SpamBayes Score 9.272146e-05
Marked as misclassified No
Message-id <1258323624.3.0.701691920691.issue6816@psf.upfronthosting.co.za>
In-reply-to
Content
The test is probably failing because the pattern is interpreted as a regex:
>>> re.match(r'\t', r'\t') is None
True

There is another problem, which is that test_runpy (or runpy itself) is
now leaking references:

test_runpy
beginning 6 repetitions
123456
......
test_runpy leaked [56, 56, 56] references, sum=168
History
Date User Action Args
2009-11-15 22:20:25pitrousetrecipients: + pitrou, ncoghlan, cjw296, fwierzbicki, r.david.murray
2009-11-15 22:20:24pitrousetmessageid: <1258323624.3.0.701691920691.issue6816@psf.upfronthosting.co.za>
2009-11-15 22:20:22pitroulinkissue6816 messages
2009-11-15 22:20:22pitroucreate