[issue30375] Correct stacklevel of warnings when compile regular expressions

2017-05-18 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue30375] Correct stacklevel of warnings when compile regular expressions

2017-05-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset dfcfc915787def056e225fb22ad5a5ee8da4052f by Serhiy Storchaka in branch '2.7': [2.7] bpo-30375: Correct the stacklevel of regex compiling warnings. (#1595) (#1648) https://github.com/python/cpython/commit/dfcfc915787def056e225fb22ad5a5ee8da4052f

[issue30375] Correct stacklevel of warnings when compile regular expressions

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

[issue30375] Correct stacklevel of warnings when compile regular expressions

2017-05-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 24b5ed230df65f6a1f9d8dd0c4409377576113d9 by Serhiy Storchaka in branch '3.5': [3.5] bpo-30375: Correct the stacklevel of regex compiling warnings. (GH-1595) (#1605) https://github.com/python/cpython/commit/24b5ed230df65f6a1f9d8dd0c4409377576113

[issue30375] Correct stacklevel of warnings when compile regular expressions

2017-05-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 73fb45df0487144765808c5d25914c67232d83fe by Serhiy Storchaka in branch '3.6': [3.6] bpo-30375: Correct the stacklevel of regex compiling warnings. (GH-1595) (#1604) https://github.com/python/cpython/commit/73fb45df0487144765808c5d25914c67232d83

[issue30375] Correct stacklevel of warnings when compile regular expressions

2017-05-16 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- versions: +Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue30375] Correct stacklevel of warnings when compile regular expressions

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

[issue30375] Correct stacklevel of warnings when compile regular expressions

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

[issue30375] Correct stacklevel of warnings when compile regular expressions

2017-05-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset c7ac7280c321b3c1679fe5f657a6be0f86adf173 by Serhiy Storchaka in branch 'master': bpo-30375: Correct the stacklevel of regex compiling warnings. (#1595) https://github.com/python/cpython/commit/c7ac7280c321b3c1679fe5f657a6be0f86adf173 -

[issue30375] Correct stacklevel of warnings when compile regular expressions

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

[issue30375] Correct stacklevel of warnings when compile regular expressions

2017-05-15 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: When compile a regular expression with groups or conditionals emitted warnings point on lines in the re module implementation rather than the line in user code. >>> import re >>> re.compile('x(?i)') __main__:1: DeprecationWarning: Flags not at the start of