[issue14250] regex.flags is never equal to 0

2012-03-11 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue14250] regex.flags is never equal to 0

2012-03-11 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue14250] regex.flags is never equal to 0

2012-03-10 Thread R. David Murray
R. David Murray added the comment: 32 is re.U, which is always ored with the passed in flags, unless re.A is set in the passed in flags. The flag docs should certinaly be updated to reflect this. -- nosy: +r.david.murray stage: -> needs patch versions: +Python 3.3 _

[issue14250] regex.flags is never equal to 0

2012-03-10 Thread py.user
New submission from py.user : http://docs.python.org/py3k/library/re.html#re.regex.flags "or 0 if no flags were provided" >>> import re >>> p = re.compile(r'', 0) >>> p.flags 32 >>> -- assignee: docs@python components: Documentation, Regular Expressions messages: 155362 nosy: docs@pytho