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 r.david.murray
Recipients Jason.Vas.Dias, r.david.murray
Date 2011-04-28.16:57:39
SpamBayes Score 2.5645133e-05
Marked as misclassified No
Message-id <1304009862.16.0.800652069865.issue11946@psf.upfronthosting.co.za>
In-reply-to
Content
Hmm.  This is very odd.  The output from getstatus is the same as your ls output, and that output passes the re.  Python has its own regular expression implementation, so your pcre version shouldn't have anything to do with it.

That complicated re, by the way, is trying to confirm that what comes back from getstatus is something that looks like the output of ls, so no, it can't really be simplified and still be testing getstatus.

It looks like something weird is going on inside the test machinery.  Are you willing to do a little Python hacking?  If I were seeing this error on my box I'd split up that assert statement.  Get the value of the getstatus call, print it out.  Then pass the output to the re, and print the result (which should be None, given that the test is failing).  If the getstatus output looks right at that point, then something very odd indeed is going on.
History
Date User Action Args
2011-04-28 16:57:42r.david.murraysetrecipients: + r.david.murray, Jason.Vas.Dias
2011-04-28 16:57:42r.david.murraysetmessageid: <1304009862.16.0.800652069865.issue11946@psf.upfronthosting.co.za>
2011-04-28 16:57:39r.david.murraylinkissue11946 messages
2011-04-28 16:57:39r.david.murraycreate