[issue29195] Get rid of supporting outdated wrong keyword arguments in re methods

2017-03-31 Thread Donald Stufft
Changes by Donald Stufft : -- pull_requests: +901 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue29195] Get rid of supporting outdated wrong keyword arguments in re methods

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

[issue29195] Get rid of supporting outdated wrong keyword arguments in re methods

2017-01-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset f8678135c042 by Serhiy Storchaka in branch 'default': Issue #29195: Removed support of deprecated undocumented keyword arguments https://hg.python.org/cpython/rev/f8678135c042 -- nosy: +python-dev ___ Pyt

[issue29195] Get rid of supporting outdated wrong keyword arguments in re methods

2017-01-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: "pattern" is not more informative, it is just wrong. The argument of the match() method is not a pattern, it is a string with which a pattern is matched. -- ___ Python tracker _

[issue29195] Get rid of supporting outdated wrong keyword arguments in re methods

2017-01-07 Thread Raymond Hettinger
Raymond Hettinger added the comment: It's too bad that "pattern" lost out to the less informative "string". +1 for finishing the work and applying this patch. -- nosy: +rhettinger ___ Python tracker __

[issue29195] Get rid of supporting outdated wrong keyword arguments in re methods

2017-01-07 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Many re methods accepted the string parameter as a keyword argument by wrong name. This was fixed in issue20283. Wrong keyword names were still accepted, but a deprecation warning was emitted if use them. Proposed patch finishes the deprecation period (sta