[issue30298] Weak deprecations for inline regular expression modifiers

2017-05-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thanks Raymond. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue30298] Weak deprecations for inline regular expression modifiers

2017-05-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 418d60a52579b6847776db3e354a8660b26dc752 by Serhiy Storchaka in branch '3.6': [3.6] bpo-30298: Weaken the condition of deprecation warnings for inline modifiers. (GH-1490) (#1525) https://github.com/python/cpython/commit/418d60a52579b6847776db3

[issue30298] Weak deprecations for inline regular expression modifiers

2017-05-09 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +1624 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue30298] Weak deprecations for inline regular expression modifiers

2017-05-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 305ccbe27ea5ba82fd2d8c32ec739f980e524330 by Serhiy Storchaka in branch 'master': bpo-30298: Weaken the condition of deprecation warnings for inline modifiers. (#1490) https://github.com/python/cpython/commit/305ccbe27ea5ba82fd2d8c32ec739f980e52

[issue30298] Weak deprecations for inline regular expression modifiers

2017-05-07 Thread Raymond Hettinger
Raymond Hettinger added the comment: LGTM -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue30298] Weak deprecations for inline regular expression modifiers

2017-05-07 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +1592 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue30298] Weak deprecations for inline regular expression modifiers

2017-05-07 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: There is a difference between handling inline modifiers in regular expressions between Python and all other regular expression engines that support inline modifiers. In other engines an inline modifier affect only the part of the pattern after it. It Pytho