[issue30335] Document deprecated alias of assertNotRegex

2017-06-09 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks! -- resolution: -> fixed stage: backport needed -> resolved status: open -> closed ___ Python tracker ___

[issue30335] Document deprecated alias of assertNotRegex

2017-06-09 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset cabdba24b5cee036bd4963d2dcf5bf667e6d63c9 by Mariatta in branch '3.5': [3.5] bpo-30335: Add deprecation alias entry for assertNotRegexpMatches (GH-1536) (GH-2056) https://github.com/python/cpython/commit/cabdba24b5cee036bd4963d2dcf5bf667e6d63c9

[issue30335] Document deprecated alias of assertNotRegex

2017-06-09 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 10c9a09ef4810f0235f5f585dcce70eca049604a by Mariatta in branch '3.6': [3.6] bpo-30335: Add deprecation alias entry for assertNotRegexpMatches (GH-1536) (GH-2055) https://github.com/python/cpython/commit/10c9a09ef4810f0235f5f585dcce70eca049604a

[issue30335] Document deprecated alias of assertNotRegex

2017-06-09 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +2117 ___ Python tracker ___ ___

[issue30335] Document deprecated alias of assertNotRegex

2017-06-09 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +2116 ___ Python tracker ___ ___

[issue30335] Document deprecated alias of assertNotRegex

2017-06-09 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- assignee: docs@python -> Mariatta ___ Python tracker ___

[issue30335] Document deprecated alias of assertNotRegex

2017-06-09 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- assignee: -> docs@python components: +Documentation -Tests nosy: +docs@python stage: -> backport needed versions: +Python 3.5, Python 3.6 ___ Python tracker

[issue30335] Document deprecated alias of assertNotRegex

2017-06-09 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 74921ed8941fce14c2a53dc7280f43eb01fe4ed8 by Mariatta (Jim Fasarakis-Hilliard) in branch 'master': bpo-30335: Add deprecation alias entry for assertNotRegexpMatches (GH-1536)

[issue30335] Document deprecated alias of assertNotRegex

2017-05-10 Thread Marco Buttu
Marco Buttu added the comment: Hi Jim, I think assertNotRegexpMatches has never been introduced: https://docs.python.org/3/whatsnew/3.1.html https://docs.python.org/3/whatsnew/3.2.html That is why there is no reference in the documentation about that. I also executed a test with Python 3.1

[issue30335] Document deprecated alias of assertNotRegex

2017-05-10 Thread Jim Fasarakis-Hilliard
Changes by Jim Fasarakis-Hilliard : -- pull_requests: +1635 ___ Python tracker ___

[issue30335] Document deprecated alias of assertNotRegex

2017-05-10 Thread Jim Fasarakis-Hilliard
New submission from Jim Fasarakis-Hilliard: The assertNotRegexpMatches name was deprecated in 3.2 in favor of assertNotRegex [1]. This is currently not documented in unittest.rst. [1]: https://github.com/python/cpython/commit/ed3a7d2d601ce1e65b0bacf24676440631158ec8 -- components: