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 bkline
Recipients bkline, ezio.melotti, mrabarnett
Date 2017-10-23.23:25:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1508801105.35.0.213398074469.issue31856@psf.upfronthosting.co.za>
In-reply-to
Content
According to the documentation of the re module, "When this flag [re.VERBOSE] has been specified, whitespace within the RE string is ignored, except when the whitespace is in a character class or preceded by an unescaped backslash; this lets you organize and indent the RE more clearly. This flag also lets you put comments within a RE that will be ignored by the engine; comments are marked by a '#' that’s neither in a character class [n]or preceded by an unescaped backslash." (I'm quoting from the 3.6.3 documentation, but I've tested with several versions of Python, as indicated in the issue's `Versions` field, all with the same results.)

Given this description, I would have expected the output for each of the pairs of calls to findall() in the attached repro code to be the same, but that is not what's happening. In the case of the first pair of calls, for example, the non-verbose version finds two more matches than the verbose version, even though the regular expression is identical for the two calls, ignoring whitespace and comments in the expression string. Similar problems appear with the other two pairs of calls.

Here's the output from the attached code:

['&', '(', '/Term/SemanticType/@cdr:ref', '==']
['/Term/SemanticType/@cdr:ref', '==']
[' XXX ']
[]
[' XXX ']
[]

It would seem that at least one of the following is true:

 1. the module is not behaving as it should
 2. the documentation is wrong
 3. I have not understood the documentation correctly

I'm happy for it to be #3, as long as someone can explain what I have not understood.
History
Date User Action Args
2017-10-23 23:25:05bklinesetrecipients: + bkline, ezio.melotti, mrabarnett
2017-10-23 23:25:05bklinesetmessageid: <1508801105.35.0.213398074469.issue31856@psf.upfronthosting.co.za>
2017-10-23 23:25:05bklinelinkissue31856 messages
2017-10-23 23:25:05bklinecreate